ASP.NET Core Runtime 2.1.17
https://dotnet.microsoft.com/download/dotnet/2.1
.NET Core 2.1 downloads for Linux, macOS, and Windows. .NET is a free, cross-platform, open-source developer platform for building many different types The ASP.NET Core Runtime enables you to run existing web/server applications. On Windows, we recommend installing the Hosting Bundle, which...
What's new in ASP.NET Core 2.1 | Microsoft Docs
https://docs.microsoft.com/en-us/aspnet/core/release-notes/aspnetcore-2.1?view=aspnetcore-5.0
ASP.NET Core 2.1 provides ASP.NET Core Identity as a Razor Class Library. Apps that include Identity can apply the new Identity scaffolder to selectively ASP.NET Core 2.1 includes a number of improvements that make it easier to use HTTPS in development and to configure HTTPS in production.
ASP.NET Core 2.1: Building a Simple Web API - YouTube
https://www.youtube.com/watch?v=J_MEscBWJYI
This tutorial will take you through how to create a simple .NET Core 2.1 Web API our demo will focus on creating an Inventory Store to Add and Get items.
In this post, we will see some of the top features of ASP.NET Core 2.1.
https://www.c-sharpcorner.com/article/asp-net-core-2-1-features-part-one/
ASP.NET Core Module is the module which lets you run ASP.NET Core applications on IIS. I have already written a post on how to host your application on IIS along with the basic details of .NET Core module which you can find here. Today (without .NET Core 2.1), when IIS receives the request, it...
What's New in ASP.NET Core 2.1
https://www.codemag.com/Article/1807041/What%E2%80%99s-New-in-ASP.NET-Core-2.1
ASP.NET Core 2.1 is the latest update to Microsoft's open source and cross-platform Web framework for .NET and is now available for production use. As you can see in Anthony Chu's article (in this same issue of CODE Magazine) ASP.NET Core 2.1 now includes support for real-time Web applications...
ASP.NET Core 2.1 on full .NET Framework - Stack Overflow
https://stackoverflow.com/questions/51066369/asp-net-core-2-1-on-full-net-framework
I'm currently using ASP.NET Core 2.0 on .NET 4.7.1 and i'm also using Azure Functions v1 on 4.7.1 and share Class Librarys between the Functions- and the Web Projects. Upgrading to Azure Functions v2 to go all-in on .NET Core seems a bit too risky given the current state of Azure Functions v2 so i...
A Quick first look at ASP.NET Core 2.1
https://www.talkingdotnet.com/quick-first-look-asp-net-core-2-1/
ASP.NET Core 2.1 introduces a new meta-package for use by applications: Microsoft.AspNetCore.App. As by default, ASP.NET Core 2.1 app will now run on HTTPS. A developer certificate will be set up for the development environment to run HTTPS even on the local...
ASP.NET Core 2.1/3.1 Runtime - Docker Hub
https://hub.docker.com/_/microsoft-dotnet-core-aspnet/
ASP.NET Core 2.1/3.1 Runtime. By Microsoft. Official images for the ASP.NET Core 2.1/3.1 runtime.
ASP.NET Core 2.1 high-level planning ยท Issue #288...
https://github.com/aspnet/Announcements/issues/288
This is high-level only and doesn't include all issues, bugs, etc. from every repo, just intended to give a general idea of release scope and direction. The following high-level features are planned for the ASP.NET Core 2.1 release: Sign...
Installing ASP.NET Core 2.1 on Ubuntu 18.4 Linux | Daniel Opitz - Blog
https://odan.github.io/2018/07/17/aspnet-core-2-ubuntu-setup.html
Install the .NET SDK. Create a new ASP.NET Core web application. Publish and copy over the app. Copy the ASP.NET Core app to the server using a tool that integrates into the organization's workflow (for example, SCP, SFTP). It's common to locate web apps under the var directory (for example...
What's New in .NET Core 2.1 - Stackify
https://stackify.com/new-in-net-core-2-1/
The ASP.NET Core Identity library for authentication brings along its own user interface, which, starting with ASP.NET Core 2.1, is deployed on the same NuGet package as included .cshtml files. What this means is that you can select the parts you want of it, and provide your own UI for the others.
NET Core 2.1 Released, Along with Entity Framework, ASP.NET...
https://visualstudiomagazine.com/articles/2018/05/31/dotnet-core-2-1.aspx
.NET Core is a general-purpose, cross-platform, open source development platform maintained by Microsoft, the .NET Foundation and general .NET community. Developers can use it on Windows, macOS and Linux to create device, cloud and embedded/IoT applications. Its ASP.NET and Entity...
NET Core - Wikipedia
https://en.wikipedia.org/wiki/.NET_Core
.NET (previously named .NET Core) is a free and open-source, managed computer software framework for Windows, Linux, and macOS operating systems.
HttpClientFactory in ASP.NET Core 2.1 (Part 2) - Steve Gordon - Code...
https://www.stevejgordon.co.uk/httpclientfactory-named-typed-clients-aspnetcore
This should all be correct as of ASP.NET Core 2.1 RC1. Named Clients. In the first post, I demonstrated how we could use the HttpClientFactory to get a basic HttpClient instance.
Configuring HTTPS in ASP.NET Core 2.1 - DZone Web Dev
https://dzone.com/articles/configuring-https-in-aspnet-core-21
Finally, HTTPS has been put into ASP.NET Core. It was there before back in 1.1 but was kinda tricky to configure. It was available in 2.0 bit not configured by default. Now it is part of the default configuration and pretty much visible and present to the developers who will create a new ASP.NET Core 2.1 project.
New .NET Core 2.1 and ASP.NET Core 2.1 APIs - NDepend
https://blog.ndepend.com/new-net-core-2-1-asp-net-core-2-1-apis/
To analyze ASP.NET Core assemblies it was a bit more difficult than just comparing assemblies in 2 folders. ASP.NET Core assemblies are stored in NuGet packages so we did explore assemblies in the folder C...
Migration from ASP.NET Core 2.1 to 2.2 - Eric L. Anderson
https://elanderson.net/2018/12/migration-from-asp-net-core-2-1-to-2-2/
On December 4th .NET Core 2.2 including ASP.NET Core 2.2 and Entity Framework 2.2. In this post, I will be taking one of the projects used in the ASP.NET Basics series and converting it from ASP.NET 2.1.x to the new 2.2 version of ASP.NET Core. This will all be based on the official 2.2 migration guide.
HttpClientFactory in ASP NET Core 2.1
https://kimsereyblog.blogspot.com/2018/07/httpclientfactory-in-asp-net-core-21.html
ASP.NET Core 2.1 ships with a factory for HttpClient called HttpclientFactory. This factory allows us to no longer care about the lifecycle of the HttpClient by leaving it to the framework. Today we will see few ways of instantiating clients
ASP.NET Core Identity Pages with ASP.NET Core 2.1
https://csharp.christiannagel.com/2018/07/18/identitypages/
Creating a ASP.NET Core 2.1 project with identity configured you might miss controllers and many views that all have been available with ASP.NET Core 2.0 projects. All this functionality has been put into a Razor Class Library - a new feature with ASP.NET Core 2.1.
Install .NET Core, ASP.NET Core
https://www.tutorialsteacher.com/core/aspnet-core-environment-setup
Learn to install .NET Core/ASP.NET Core and prepare development environment. Understand the basics of tools required for ASP.NET Core web application. Visual Studio 2017 supports .NET Core 2.1, whereas Visual Studio 2019 supports both the versions. You can use your favorite IDE, such as...
Configuring Kestrel in ASP.NET Core 2.1
https://www.telerik.com/blogs/configuring-kestrel-in-asp-net-core-2-1
Developers targeting ASP.NET Core may come across a configuration issue when attempting to debug an application running on Kestrel on ASP.NET Core 2.1. Paul Ballard explains how to resolve it. I recently started up a new ASP.NET Core 2.1 project using the MVC starter project in macOS using...
Migrate ASP.NET Core 2.2 system to ASP.NET Core... | Medium
https://medium.com/@toanbach/migrate-asp-net-core-2-2-system-to-asp-net-core-3-1-ca56e95f67bc
- In .NET Core 2.x we use service.AddMvc() in ConfigureServices method of Startup.cs, but in ASP.NET Core 3.x, it's separated to smaller chunks. Example you need use only Web API we don't need to add View engine. So you need to add services.AddControllers() is enough. For MVC App we...
Cart in ASP.NET Core 2.1 - DEV Community
https://dev.to/skipperhoa/cart-in-asp-net-core-2-1-2cn8
name project Steps 5: Select .Net Core, ASP.NET Core 2.1, choonse Web Application(Model-View-Controller), after then click Create. Okay, after setup complete project, you need open Nutget Packager Manager->Install (4 plugin).