By tag: MSBuild
0
kicks
Regular expressions with MSBuild. Reading version numbers...
I show how I recently used the MSBuild community tasks and a regular expression to read version numbers out of the AssemblyInfo.cs file into MSBuild properties.
0
kicks
Say Goodbye to NAnt and MSBuild With IronRuby
Tired of writing tons of XML in order to create automated .NET builds? Well, look no further... IronRuby, Rake, and Albacore are here to rescue you!
0
kicks
Building javascript minification into MSBuild scripts
How to use a tool called Packer.NET to automatically minify your javascript and CSS files during your build. Minification can really speed up the download of an ASP.NET application with lots of javascript.
0
kicks
Deploy, test and pack your code - Part 2 Using MsBuild
In part one of this packing series I have shown, how you can automate your build process, test and optionally mock by using the popular .net deployment tool NAnt. If you don't know what I am talking about and just landed here by help of search engine. Let me put the link below again.
http://weblo...
0
kicks
Bundle SQL script with build process using MSBuild
We are making a sample application , demo or startup kit or a toolkit with test project that requires some sql script. We generally ship in a readme.txt that says it all. But hey, how about having the script under automated process , like if my sql server and VS 2008 is in place, with the click of C...
0
kicks
Hack: Parallel MSBuilds from within the Visual Studio IDE
Scott Hanselman shows a trick how to configure Visual Studio to parallel compile on a multi-core machine straight from the IDE.
0
kicks
Faster Builds with MSBuild using Parallel Builds and MultiCore CPU
Title says enough or you're just dead from the neck up if you're not interested...
0
kicks
MSBuild Community Tasks Project
The MSBuild Community Tasks Project is an open source project for MSBuild tasks. The goal of the project is to provide a collection of open source tasks for MSBuild.
0
kicks
Compiling VS and generating project version based on SVN revision.
Solution for dynamic and automatic AsseblyInfo generation with version number based on SVN revision. It is using just csproj file.
0
kicks
Extending MSBuild
"Visual Studio project files, i.e. .csproj and .vbproj files, _ARE_ MSBuild scripts. When Visual Studio 2005 builds a project it actually calls MSBuild.exe and passes it the project file."
0
kicks
Versioning Builds With TFS & MSBuild
How to automatically use the TFS changeset number for the revision number part of a version string.
0
kicks
Dot Net Project: Kill specific tasks from MsBuild
This is an example that presents the way - how to kill the processes in MSBUILD script.
It's very useful when you need to shutdown some application or services
0
kicks
SubSonic and Automation with MSBuild
Learn how to generate your data access layer automatically using MSBuild and SubSonic together with this short video demonstration.
0
kicks
Deploying config files to multiple environments - dev, stage, prod
A common problem most application developers face at one time or another is managing the deployment of the environment specific configuration elements their application depends on. Most often these elements include items like connection strings, file paths or other settings the application requires...
0
kicks
Post Build Deployments with MSBuild
MSBuild is a powerful tool for automation but as the name implies, it is a tool primarily for compiling code. Beyond the initial build MSBuild can also be used in preparation for deployments. To assist with the deployment of websites Microsoft produced Web Deployment Projects which carry out a serie...