I\'m trying to make a batch file to publish the few ClickOnce application we have in one click. I\'m using msbuild for that, and as an example the below command line shows how I\'m doing it:
I am trying to generate a release build with no pdb files generated.I have seen numerous posts that suggest right-clicking on the project, selecting Properties, going to the Build tab and then to the
I have a Visual Studio solution file (.sln), with several projects (VB.NET and C#, .vbproj, and .csproj files, respectively), and I have a Windows application, and I use ClickOnce to publish it.
When running MSBuild, anything passed in on the command line using /p:MyProp=value is accessible from every MSBuild script invoked (via the MSBuild task) from the main script. How can I define a prope
I am currently still fiddling with our msbuild & deployment script and one of the steps is to register a (legacy) com component on the 开发者_JAVA技巧machine the code is deployed to. Is there any
We have a handful of ASP.net pages that include more than 50+ lines of javascript specific to that page. We\'d like to minify that javascript during our CruiseControl build process.
I have been using CC.NET for a while and decided to try Team City. The initial and default configuration is very easy, but how do I swap configuration files after code is checked out and before unit t
We are migrating from MSTests to NUnit. The first step was to migrate all our UnitTests projects which was accomplished using the following msbuild task:
I have a MSBuild file that uses item batching to send a bunch of files into a task. The target uses a vector of items for input and output.
Our process for creating a new development (get latest, setup db, setup IIS directories w开发者_高级运维ith permissions) environment has got a little complicated and I want to automate it.