Top ".net-core" questions

.NET Core is an open-source successor of the .NET Framework.

How to fix "The CORS protocol does not allow specifying a wildcard (any) origin and credentials at the same time" error

I've already enabled CORS on the project in C# .net Core In startup.cs I've added lines ... services.AddCors(); ... app.…

c# .net-core blazor
Are async console applications supported in .NET Core?

At some point in time the CoreCLR supported async main entry points. See http://blog.stephencleary.com/2015/03/async-console-apps-on-net-coreclr.html However …

c# .net .net-core
System could not be found Visual Studio 2017 ASP.NET Core project

I've installed the newly released version of Visual Studio 2017 and started a fresh ASP.NET Core project targeting .NET Core. …

asp.net-core .net-core visual-studio-2017
An unhandled exception occurred while processing the request in OpenIddict

So, I'm trying to implement OpenIddict version 1.0.0-beta2-0580 with NET core 1.1 and I get the following error: An unhandled …

c# asp.net-core .net-core openiddict
Memory Cache in dotnet core

I am trying to write a class to handle Memory cache in a .net core class library. If I use …

c# caching .net-core memorycache
Remotely connect to .net core self hosted web api

I have a simple .net core web api with one action: [Route("[action]")] public class APIController : Controller { // GET api/values […

c# asp.net-web-api .net-core self-hosting
Could not load file or assembly System.Net.Http version 4.1.1.0

I'm porting a Net Framework 4 dll to Net Core. When porting my unit tests project I get an exception running …

c# .net .net-core porting .net-framework-version
What's the difference between ASP.NET 5, .NET Core, and ASP.NET Core 5?

I'm confused on the distinction between these terms: ASP.NET 5 (now renamed ASP.NET Core and released as 1.0, not 5.0) ASP.…

asp.net .net asp.net-core .net-core
Using appsettings.json to configure Kestrel listen port Dotnet core 2 preview 2

From what I understand the correct way of setting listen ports for ASP Dotnet Core 2 preview 1/2 is by creating a …

.net-core kestrel