DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 620 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

Stories recently tagged with 'MSBuild' Subscribe to this feed
2
kicks
submitted by mehfuzh 2 months, 16 days ago

weblogs.asp.net — 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://weblogs.asp.net/mehfuzh/archive/2008/08/30/deploy-test-and-pack-your-code-part-1-using-nant.aspx In this post, I will do a replay to mostly what I have talked in my last post but with MsBuild. read more...

Add a comment add a comment | category: | Views: 6
tags: , , | tag it

2
kicks
submitted by mehfuzh 3 months, 8 days ago

weblogs.asp.net — 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 Ctrl + Shift + B everything gets ready. Here, we will do just right that. ... read more...

Add a comment add a comment | category: | Views: 8
tags: , | tag it

1
kicks
submitted by Jemm Jemm 6 months, 28 days ago

hanselman.com — Scott Hanselman shows a trick how to configure Visual Studio to parallel compile on a multi-core machine straight from the IDE. read more...

Add a comment add a comment | category: | Views: 6
tags: , | tag it

32
kicks
published 6 months, 29 days ago, submitted by bradygaster bradygaster 6 months, 29 days ago

hanselman.com — Title says enough or you're just dead from the neck up if you're not interested... read more...

Add a comment 2 comments | category: | Views: 18
tags: , | tag it

3
kicks
submitted by Jemm Jemm 6 months, 30 days ago

msbuildtasks.tigris.org — 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. read more...

Add a comment add a comment | category: | Views: 20
tags: , , , | tag it

20
kicks
published 8 months, 18 days ago, submitted by rodpl 8 months, 19 days ago

rod.blogsome.com — Solution for dynamic and automatic AsseblyInfo generation with version number based on SVN revision. It is using just csproj file. read more...

Add a comment 1 comment | category: | Views: 6
tags: , | tag it

2
kicks
submitted by powerrush powerrush 11 months, 16 days ago

simple-talk.com — "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." read more...

Add a comment add a comment | category: | Views: 2
tags: , , | tag it

4
kicks
submitted by rbanks54 1 year, 2 months ago

richardsbraindump.blogspot.com — How to automatically use the TFS changeset number for the revision number part of a version string. read more...

Add a comment add a comment | category: | Views: 23
tags: , , | tag it

1
kicks
submitted by adventurer 1 year, 4 months ago

dotnetproject.blogspot.com — 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 read more...

Add a comment add a comment | category: | Views: 0
tags: | tag it

12
kicks
published 1 year, 5 months ago, submitted by offwhite offwhite 1 year, 5 months ago

brennan.offwhite.net — Learn how to generate your data access layer automatically using MSBuild and SubSonic together with this short video demonstration. read more...

Add a comment add a comment | category: | Views: 4
tags: , , | tag it

8
kicks
submitted by mberseth mberseth 1 year, 6 months ago

mattberseth.com — 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 access to during runtime. I recently tackled this problem and came up with a solution that seems to work pretty well (we have been using it for the past 4 months without any issues) and fits in great with our automated build enviornment. read more...

Add a comment add a comment | category: | Views: 8
tags: , | tag it

20
kicks
published 1 year, 6 months ago, submitted by crpietschmann crpietschmann 1 year, 6 months ago

brennan.offwhite.net — Brennan put together a series covering MSBuild. He's used it to automate many .NET projects over the past year and has picked up a few good techniques which really cut down on all of the work to build, test, package and deploy a project. read more...

Add a comment add a comment | category: | Views: 1
tags: | tag it

14
kicks
published 1 year, 6 months ago, submitted by crpietschmann crpietschmann 1 year, 6 months ago

brennan.offwhite.net — 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 series of tasks to build a website with the option to replace configuration sections which is a very useful feature. Once I have compiled a project I have multiple deployment targets so I wanted to just reconfigure a project in preparation for a deployment and I found a good way get this done outside of a web deployment project. read more...

Add a comment add a comment | category: | Views: 4
tags: | tag it

11
kicks
published 1 year, 10 months ago, submitted by camalot camalot 1 year, 10 months ago

ccnetconfig.org — A tool that will generate some stats on the source code. It gets the following information: * Total Number of Files * Total Number of Commented Lines * Total Number of Single Line Comments * Total Number of Multi-Line Comments * Total Number of Empty Lines * Total Number of Source Code Lines * Total Number of Lines Includes an MSBuild targets file to automate the process. The target will update the config file before executing the tool. It will process files based on RegEx patterns defined in the config/build script. It includes a processor that will process files in an archive as well. read more...

Add a comment add a comment | category: | Views: 0
tags: | tag it

9
kicks
published 2 years ago, submitted by Hyle 2 years ago

en.csharp-online.net — Learn to use the new MSBuild—Microsoft Build Engine—instead of NAnt to build .NET applications. Excerpt: Even if you have experience using an XML task-based build tool, such as Ant or NAnt, MSBuild is significantly different. In fact, MSBuild is different not only in execution but also in syntax. Therefore, to really get a feel for MSBuild, you must get your hands dirty using the tool. As you begin to explore what MSBuild has to offer to your projects, you will naturally seek more knowledge of MSBuild. This chapter will help you get your hands dirty by showing you several examples of how you can use MSBuild. Also, this chapter will present some important techniques for using MSBuild effectively. We will provide a variety of tips, covering topics such as integrating MSBuild into Visual Studio and formatting your output. These samples are set up to be mostly independent. This is because each sample expresses a set of specific ideas, so you will be able to examine and try each concept on its own. After this chapter, you should have a much greater feel for building your applications with MSBuild. read more...

Add a comment add a comment | category: | Views: 3
tags: | tag it

9
kicks
published 2 years, 3 months ago, submitted by ekampf 2 years, 3 months ago

blogs.msdn.com — A list of projects providing MSBuild tasks. read more...

Add a comment add a comment | category: | Views: 2
tags: | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads via The Lounge