0

I have a multi-project ASP.NET + C# solution.

I was planning on writing a quick (separate) VB app that yanks out all DLLs, ASPX, Config, etc files and slaps them into a 7zip file for deployment to the test server.

Is there a more elegant solution than this?

My development environment is VWD2008Express.

3 Answers 3

2

I suggest that you look at cruise control .net and NAnt which will allow you to take care of all of this type of stuff easily. No need for zipping to move the files (though you can zip and create a backup!). You can use msbuild to do the pre-compile. Rick Straul wrote a great tool that you can tap into that does this for you...tells you what the appropriate msbuild commands are (http://www.west-wind.com/presentations/AspNetCompilation/AspNetCompilation.asp).

Sign up to request clarification or add additional context in comments.

1 Comment

This tool seems pretty useful. Downloading the Windows SDK so that I have access to it. Thanks!
1

If your version lacks setup projects, you can still set up the constituent projects to output their binaries to the same directory.

Comments

1

The short is whatever works for your situation. At work, I use a custom MSBuild file that handles this - including zipping up all of the deployables for easy distribution into our QA and Production environments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.