Currently I have this in multiple projects:
<PropertyGroup>
<InstallerMajorVersion>1</InstallerMajorVersion>
<InstallerMinorVersion>09</InstallerMinorVersion>
<InstallerBuildVersion>08</InstallerBuildVersion>
</PropertyGroup>
...
<PropertyGroup>
<OutputName>Project-$(InstallerMajorVersion).$(InstallerMinorVersion).$(InstallerBuildVersion)</OutputName>
</PropertyGroup>
I'd like to have this information (the first PropertyGroup) in only one file, so I don't have to edit it in multiple places. However I need to import or somehow get to this information from every project file so I can set OutputName correctly.
How do you share properties/variables between multiple projects?
I didn't have much luck with my <Import />
approach: VS2010 - Using <Import /> to share properties between setup projects?