简体   繁体   中英

building a web application using msbuild

我有一个包含Web服务,类库,子Web应用程序的14个项目的Web应用程序解决方案。任何人都可以提供如何与示例相处的解决方案吗?

you can create a batch file that contains the below

pushd "C:\Windows\Microsoft.NET\Framework\v3.5"

msbuild "C:\projects\project1.csproj"
msbuild "C:\projects\project2.csproj"
msbuild "C:\projects\project3.csproj"

or you can build the solution directly

pushd "C:\Windows\Microsoft.NET\Framework\v3.5"

msbuild "C:\projects\solution.sln"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM