vb.net - Precompiled in asp.net application not required -


I have a website project and some other projects that are bound by a solution file. When I create a solution using Visual Studio, it is not making a precompiled version of the website, but creating a precompressed version using msbuild to create a solution. We do not use pre-assembled code to deploy on the server, so this version is not necessary in our process. And it takes a lot of time to make it.

How can I avoid building a pre-compiled version? Is there a switch or function that I can use to create a solution in the msbuild script? I need MSbilt to just build the solution

Currently the command I am using:

msbuild "ABC.sln"

The MSBuild A / T switch features on the command line, which allows you to define the build target.

You will use this switch to target all other subfolders of the solution.

Comments

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -