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. Command line to install/upgrade .NET Core - Stack Overflow

    Oct 2, 2016 · Are there command line commands to install or upgrade .NET Core? I checked to see if I had .NET Core was installed on my computer using dotnet --version only to notice that I still had the …

  3. 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, 3 months ago Modified 1 year, 3 months ago Viewed …

  4. 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

  5. .NET Core vs ASP.NET Core - Stack Overflow

    May 23, 2017 · What exactly is the difference between .NET Core and ASP.NET Core? Are they mutually exclusive? I heard ASP.NET Core is built on .NET Core, but it can also be built on the full …

  6. How to get an instance of IServiceProvider in .NET Core?

    It's used to create instances of types registered in .NET Core native DI container. An instance of IServiceProvider itself can be obtained by calling a BuildServiceProvider method of an …

  7. You must install or update .NET to run this application

    Jul 27, 2022 · 0 I have install again .net 8 framework with latest version or same. after that my project getting run.

  8. .NET Core - how does the 'dotnet publish' command work?

    61 I have a solution with some projects targeting .NET Standard 2.0 and a console application project targeting .NET Core 2.1. I set "myFolder" as the output folder. Building from Visual Studio, I get all …

  9. How to publish environment specific appsettings in .Net core app ...

    Sep 1, 2016 · How to publish environment specific appsettings in .Net core app? Asked 9 years, 7 months ago Modified 5 months ago Viewed 98k times

  10. .net - HttpClientFactory.Create vs new HttpClient - Stack Overflow

    Thank you for adding this guidance, since with the introduction of IHttpClientFactory in .NET Core, it is a much better alternative to the options available at the time this question was asked. I'm curious is …