Slides: (Uploaded to conference website)
Links:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pool: | |
| name: Hosted Ubuntu 1604 | |
| steps: | |
| - task: UseDotNet@2 | |
| displayName: 'Use .Net Core sdk 3.0.x' | |
| inputs: | |
| version: 3.0.x | |
| - task: DotNetCoreCLI@2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dir -recurse -directory -force -filter .git | % { write-host $_ -ForegroundColor green; git -C "$($_.FullName)\.." gc } |
https://github.com/dotnet-presentations/dotnetcore-workshop
Check that you have the prereq's installed!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "message": { | |
| "subject": "HTML Test", | |
| "body": { | |
| "contentType": "html", | |
| "content": "<!DOCTYPE html> | |
| <html> | |
| <head> | |
| <body> | |
| <h1>HTML Test</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set-Alias less "C:\Program Files\Git\usr\bin\less.exe" | |
| function f($text, $files="*.*") | |
| { | |
| findstr /spin $text $files | less | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>@ViewData["Title"] - FrontEnd</title> | |
| <environment include="Development"> | |
| <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" /> | |
| <link rel="stylesheet" href="~/css/site.css" /> |
Slides: https://www.slideshare.net/jongalloway/from-net-framework-to-net-core
Links:
- Blog post: Update on .NET Core 3.0 and .NET Framework 4.8) explaining the future of .NET Framework and .NET Core
- https://blogs.msdn.microsoft.com/dotnet/2018/08/08/are-your-windows-forms-and-wpf-applications-ready-for-net-core-3-0/
- MSDN Magazine article "Introducing the Windows Compatibility Pack") by Immo Landwerth, with lots of great info on migrating applications to .NET Core
- Microsoft Docs guidance on choosing the right framework for a server application
- Microsoft Docs guidance on porting to .NET Core - good guidance, but doesn't cover application stacks
- [Tweet by Rich Lander showing .NET Core COM interop automating