Click here to Skip to main content
15,889,116 members
Articles / Programming Languages / C++

Automated Versioning of Your Visual Studio Build

Rate me:
Please Sign up or sign in to vote.
4.33/5 (3 votes)
27 Aug 2010CPOL2 min read 30.2K   276   17  
Helps you to use your resource file to build automated versioning controller

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "myExe", "myExe\myExe.vcproj", "{8E71F574-5E79-48DF-95B3-31DC8468B263}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{8E71F574-5E79-48DF-95B3-31DC8468B263}.Debug|Win32.ActiveCfg = Debug|Win32
		{8E71F574-5E79-48DF-95B3-31DC8468B263}.Debug|Win32.Build.0 = Debug|Win32
		{8E71F574-5E79-48DF-95B3-31DC8468B263}.Release|Win32.ActiveCfg = Release|Win32
		{8E71F574-5E79-48DF-95B3-31DC8468B263}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Sri Lanka Sri Lanka
www.simplepap.blogspot.com

Comments and Discussions