getting started with net core 2 0 on macos
play

Getting Started with .NET Core 2.0 on macOS (and Windows, too) - PowerPoint PPT Presentation

Getting Started with .NET Core 2.0 on macOS (and Windows, too) Jeremy Clark www.jeremybytes.com @jeremybytes What is .NET Core? Cross-Platform .NET Runs on macOS, Linux, and Windows Can be compiled to machine code based on


  1. Getting Started with .NET Core 2.0 
 on macOS 
 (and Windows, too) Jeremy Clark www.jeremybytes.com @jeremybytes

  2. What is .NET Core? • Cross-Platform .NET • Runs on macOS, Linux, and Windows • Can be compiled to machine code based on platform/ architecture

  3. What I like about .NET Core • .NET Core 2.0 is *EASY* to get installed and configured. • Self-hosted web applications with Kestrel. • Simplified ASP .NET templates. • Built-in Dependency Injection works for many scenarios.

  4. What I like about .NET Core • Command-line interface (CLI) • Command-line help is actually helpful. • The same tool chain can be used across platforms 
 (CLI, Visual Studio Code). • Cross-platform actually works!

  5. Stu ff you need to build applications with .NET Core 2.0 • .NET Core 2.x SDK 
 https://www.microsoft.com/net/download/macos • Visual Studio Code (or Visual Studio for Mac) 
 https://code.visualstudio.com/download • C# Extension for Visual Studio Code 
 https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp

  6. CLI Command-Line Interface • dotnet • dotnet new • dotnet add package • dotnet build • dotnet run

  7. dotnet -h

  8. dotnet -h

  9. dotnet new

  10. Creating & Running • New Projects • dotnet new webapi • dotnet new console • Build / Run • dotnet build • dotnet run

  11. Adding Packages / References • NuGet Packages • dotnet add package Newtonsoft.Json • Add Reference • dotnet add reference ../folder/my-library.csproj

  12. Solutions • Solution Files • dotnet new sln • dotnet sln add ./folder1/my-console.csproj • dotnet sln add ./folder2/my-library.csproj

  13. Async • “async” Main in a console application • Open .csproj • Add “<LangVersion>latest</LangVersion>” to PropertyGroup section

  14. ASP .NET Dependency Injection • Auto-inject dependencies as parameters in Controller constructors. • In Startup.cs • services.AddSingleton<IPeopleProvider, StaticPeopleProvider>() • Lifetimes: Singleton, Scoped, Transient

  15. Thank You! • Jeremy Clark • jeremy@jeremybytes.com • @jeremybytes • http://www.jeremybytes.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend