Can i set the "ProductName" property at buildtime in a Visual studio Deployment project?

1.7k Views Asked by At

While creating an installation package with a deployment project in VS2008, i would like to read a value from an XML file and set that value as ProductName (The Xml file is included in the package).

Is it possible?

1

There are 1 best solutions below

0
On

.vdproj has internal non msbuild file format. To change ProductName property on the fly you should create custom build script It can be msbuild proj or any other script.

productName := ReadValueFromXML(settings.xml, xpathQuery)
CallRegexToReplace(your.vdproj, "ProductName" = "8:DefaultProductNameForRelease", "ProductName" = "8:$(productName)"
devenv.exe /build your.vdproj

Product name in project must be as a marker to find and replace it for specified platform/configuration.

You can start from this and use MSBuild Community Tasks namely RegexReplace and XmlRead to implement it.