❔ Running .NET Framework Project off of command line
I primarily work with .NET core, and it is a breeze with
But I've recently come across a .NET Framework web project, and I wanted to know if it was possible to build and run it off the command line
Firstly I have managed to build it using
1) Build the project
2) Copy the contents of the build to the web directory
3) Start the IIS site
But I wanted to know if there was a way to do this without going through this like I can with
dotnetBut I've recently come across a .NET Framework web project, and I wanted to know if it was possible to build and run it off the command line
Firstly I have managed to build it using
msbuild. and I know I can host using IIS, so in theory, I can write a simple batch file to:1) Build the project
2) Copy the contents of the build to the web directory
3) Start the IIS site
But I wanted to know if there was a way to do this without going through this like I can with
dotnet for .NET Core