About 9,980,000 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 …

  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 …

  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 …

  4. How to read AppSettings values from a .json file in ASP.NET Core

    The only method I've found that works in a .Net Core Program.cs file. Have to agree with a comment on a different answer: so much convolution just to get a settings file.

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

    Feb 26, 2020 · 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 …

  6. Set Environment variable in .NET Core Console Application from …

    Mar 18, 2021 · Asp.net core applications take from the launchsettings.json file when developing in visual studio and when you publish the app will look at the web.config or app.config file.

  7. c# - Convert Word doc and docx format to PDF in .NET Core …

    Oct 5, 2017 · I need to display Word .doc and .docx files in a browser. There's no real client-side way to do this and these documents can't be shared with Google docs or Microsoft Office 365 …

  8. 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, 9 months ago Modified 11 months ago Viewed 143k times

  9. .NET Standard vs .NET Core - Stack Overflow

    May 20, 2017 · .NET Core is an implementation of .NET Standard. It's available on multiple operating systems, but that's not the same thing - there are other implementations of .NET …

  10. How to use appsettings.json in ASP.NET Core 6 Program.cs file

    Sep 30, 2021 · I'm trying to access appsettings.json in my ASP.NET Core v6 application Program.cs file, but in this version of .Net the Startup class and Program class are merged …