|
In our development environment each developer has their own dev server. Often times they do not actually develop on that server but develop from their local machine, deploy to their dev server, and then attach with the remote debugger to do debugging....
Started by spoon16 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you haven't tried editing msbuild scripts before, you've got a lot.
USERNAME) in your msbuild script.
|
|
Is there a task in MSBuild to execute svcutil.exe? Or is there a definitive wrapper task somewhere?
Started by GuyBehindtheGuy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
After....
I'm not aware of an MSBuild task.
Such a task may exist in MSBuild Community Tasks or the MSBuild Extension Pack thoughYou can always use the Exec task and run what ever you want.
For svcutil.exe.
|
|
I just learned about how to include FxCop on a build. But it's slow and I want it to be done just only on release builds. Is there any way to configure that?
Started by Jader Dias on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Only execute the FxCop task if Configuration is "Release.
Add a condition in the .msbuild script.
|
Ask your Facebook Friends
|
I've noticed projects such as Msbuild Extension Pack and MsBuild Community Tasks give msbuild the power to install assemblies, sql, and setup IIS. These features seem to be oriented to doing installs and not builds.
So I was wondering how many people ...
Started by Ryu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
tasks - [Tigris MSBuild community tasks][1] - [MS SDC tasks][2] - and custom tasks
The system allows usI use MsBuild to build, and part of the build process runs Wix to create an installer(MSI) which is used ....
|
|
How can I publish a web app using msbuild through the command line or insdie a batchfile??
Answer Snippets (Read the full thread at stackoverflow):
Http://www.codeplex.com/MSBuildExtensionPack and Building....
To the deployment server or does it also include setting up IIS?
MSBuild has built in tasks for Copy the MSBuild extension pack or the MSBuild community tasks.
|
|
Hi, I am trying to call a batch file insdie cruisecontrol and all the batch file does it calls msbuild on a .sln C# project. I can't get this to work and I get the following error :
'msBuild' is not recognized as an internal or external command Any ideas...
Answer Snippets (Read the full thread at stackoverflow):
Why call a batch file when you have the MSBuild task?
http://confluence.public.thoughtworks.org/display/CCNET/MsBuild+Task
Also - you may want to make sure the batch file works outside of one of my msbuild tasks....
|
|
I'm currently trying to set up CruiseControl.net, and so I wonder how to split up my Tasks.
Generally, I want to run Unit Tests (xUnit.net), Help File Generation (Sandcastle) and FxCop.
Now I just wonder if I should specify a new Target in the msbuild...
Started by Michael Stum on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Put almost everything into MSBuild scripts, so that you that I wouldn'T put into MSBuild scripts....
It is your build process; do what, I like a command-line "build" step .
MSBuild + NAnt for mono), testing (NUnit), packaging (zip), etc.
|
|
I am currently writing a deployment script in MSBUILD, and after downloading several extensions, I have found myself looking at the build file and thinking:
What was the point in doing this in MSBUILD?
This deployment script is completely procedural: ...
Started by Schneider on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
On the other hand, I would choose process later on to handle more... .
MSBUILD, as while the tasks are very procedural, it gives you the flexibility to extend this build - I would say yes, stay with MSBuild for the sake of integration.
|
|
Is there a better way to call MSBuild from C#/.NET than shelling out to the msbuild.exe? If yes, how?
Started by David Schmitt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
= @"logfile=C:\temp\test.msbuild.log"; engine.RegisterLogger(logger); string[] tasks = new string Build!"); try { // Call task MyTask with the parm1 property set bool success = engine.BuildProjectFile(@"C:\temp\test.msbuild",tasks....
|
|
Hi guys
How does MSBuild called SVN task?
Is there any examples or tutorial?
Thanks for your help
nikky
Started by nikky on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It has worked....
We have implemented tasks.
HTH, Kent
I often simply do calls to svn in Exec a step further, we use MSBUILD with cruisecontrol.net which has a SVN task.
MSBuild Community Tasks has tasks to do this.
|