If i have a VS.NET 2008 solution , and i want to export the build script so that i can use it to build the same application in another environment which does not have VS.NET, how can i extract this make or build script from the VS.NET ?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your solution consists of .csproj or .vbproj, it is already a build script with MSBuild as the build engine. MSBuild comes with .NET framework, not with Visual Studio.
Edit:
You can launch MSBuild from the following locations:
Starting with version 3.5 of the tool, you can specify the target framework for which you want to build by specifying the “ToolsVersion” attribute on the project element.