开发者

building a web application using msbuild

I have a web application solution with 14 projects which include web services, class libraries, sub-web applications.. can anyone provide a so开发者_开发技巧lution on how to get along with an example?


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"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜