|
|
Stories recently tagged with 'MSBuild'
|
|
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
|
category: C# | Views: 6
|
|
tags:
TypeMock, MSBuild, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
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
|
category: C# | Views: 8
|
|
tags:
MSBuild, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
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...
|
|
tags:
MSBuild, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
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...
1 comment
|
category: Visual Studio | Views: 6
|
|
tags:
MSBuild, VisualStudio | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
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
|
category: Other | Views: 2
|
|
tags:
Deployment, VisualStudio, MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
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
|
category: Other | Views: 0
|
|
tags:
MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 5 months ago, submitted by
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...
|
|
tags:
SubSonic, MSBuild, Video | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
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
|
category: Other | Views: 8
|
|
tags:
mattberseth, MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 6 months ago, submitted by
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
|
category: Other | Views: 1
|
|
tags:
MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 6 months ago, submitted by
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
|
category: Other | Views: 4
|
|
tags:
MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 year, 10 months ago, submitted by
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
|
category: C# | Views: 0
|
|
tags:
MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
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...
|
|
tags:
MSBuild | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|