About 50 results
Open links in new tab
  1. Differences between .NET vs .NET Core vs .NET Standard vs .NET ...

    Jul 23, 2023 · .NET Standard is an in-between library that allows code to be shared between .NET Framework and .NET Core. In theory, if you compile code to .NET Standard, it should be compatible …

  2. What is ".NET Core"? - Stack Overflow

    Nov 13, 2014 · Recently in an official .NET Framework Blog it was announced that .NET Core is going open source. Ironically, the author mentions that what .NET Core is will be explained in the next post. …

  3. Can I generate script of a migration with EF code first and .net core

    I'm building a MVC application with .Net Core and I need to generate the script of a migration. With EF6 I did run the command update-database -script but when I try to do the same with .net Core is

  4. c# - The target process exited without raising CoreCLR started event ...

    The target process exited without raising a CoreCLR started event.Ensure that the target process is configured to use .NET Core. This may be expected if the target process did not run on .NET Core In …

  5. c# - Determine Operating System in .NET Core - Stack Overflow

    Apr 6, 2018 · How can I determine which operating system my .NET Core app is running on? In the past I could use Environment.OSVersion. What is the current way to determine whether my app is running …

  6. How to force Visual Studio to re-create the SSL certificate for a .NET ...

    Dec 9, 2021 · How to force Visual Studio to re-create the SSL certificate for a .NET Core Web Application running Kestrel? Asked 4 years, 1 month ago Modified 1 year, 1 month ago Viewed 94k …

  7. How to make dotnet core select a lower version? - Stack Overflow

    Feb 5, 2021 · How to make dotnet core select a lower version? From your description, I suppose you want to specify the framework to target when using the dotnet new command to create Asp.net Core …

  8. System.ServiceModel not found in .NET Core project

    Aug 7, 2017 · If you are using .NET Standard 2.0 (that's what I tested with), you can install compatible NuGet packages. The basic service model is available in System.ServiceModel.Primitives (currently …

  9. c# - How to create a global variable in ASP.NET Core Web API ...

    Feb 21, 2022 · 11 How can I create a global variable in an ASP.NET Core Web API application? In ASP.NET MVC, I could do it like: Application["<variableName>"] = <value> I tried the same in my …

  10. How to load appsetting.json section into Dictionary in .NET Core?

    Mar 17, 2017 · How to load appsetting.json section into Dictionary in .NET Core? Asked 8 years, 10 months ago Modified 12 months ago Viewed 143k times