https://aka.ms/aspnetcore-makeover
- Intro (goals/non-goals/what you'll learn)
- Pick The Right Starting Template
- Web Application (no auth)
- Web API
- SPA
https://aka.ms/aspnetcore-makeover
| using Microsoft.AspNetCore.Mvc.Testing; | |
| using System; | |
| using System.Threading.Tasks; | |
| using Xunit; | |
| namespace WebApp.Tests | |
| { | |
| public class BasicTests | |
| : IClassFixture<WebApplicationFactory<Startup>> | |
| { |
| { | |
| "twitter:consumerSecret": "sPiigZdUtlrYTY2wmZurNcxZza0gnwVwFw9AGiL9tm5Mns6vzY", | |
| "twitter:consumerKey": "eFqGFPAG9VbcKXi13NoiNfqcl", | |
| "google:clientID": "{your-client-ID-here}", | |
| "google:clientSecret": "{your-key-here}" | |
| } |
I hereby claim:
To claim this, I am signing this object:
| D:\Users\Jon> docker images | |
| REPOSITORY TAG IMAGE ID CREATED SIZE | |
| microsoft/dotnet latest b10593e780a5 39 hours ago 1.64GB | |
| D:\Users\Jon> docker save -o d:\dotnet-docker-image.tar microsoft/dotnet | |
| D:\Users\Jon> docker rmi microsoft/dotnet | |
| Error response from daemon: conflict: unable to remove repository reference "microsoft/dotnet" (must force) - container 40bf430d0282 is using its referenced image b10593e780a5 | |
| D:\Users\Jon> docker rmi microsoft/dotnet -f | |
| Untagged: microsoft/dotnet:latest |
| /* | |
| REFERENCES: | |
| http://210.58.99.179/flyup2005/textview.php?file=0000001034&txtdate=2005/08/19 (main code) | |
| http://www.vbaccelerator.com/home/NET/Code/Controls/Popup_Windows/Floating_Controls/article.asp (preventing a window from getting focus) | |
| http://www.codeproject.com/dotnet/DesktopWidget.asp (hide title, unused) | |
| */ | |
| using System; | |
| using System.Drawing; | |
| using System.Windows.Forms; |