Subversion Repositories DevTools

Rev

Rev 2877 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2877 dpurdie 1
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
 
3
	<PropertyGroup>
4
		<!-- Select a Product Configuration -->
5
		<InstallShieldProductConfiguration>Default Configuration</InstallShieldProductConfiguration>
6
 
7
		<!-- Select a Visual Studio Configuration / InstallShield Release -->
8
		<Configuration>Debug</Configuration>
9
		<InstallShieldRelease>$(Configuration)</InstallShieldRelease>
10
	</PropertyGroup>
11
 
12
	<ItemGroup>
13
		<!-- The InstallShieldProject item selects the project to build -->
14
		<InstallShieldProject Include="$(MSBuildProjectDirectory)\$(MSBuildProjectName).ism"/>
15
 
16
		<!-- The InstallShieldReleaseFlags sets Release Flags -->
17
		<!--<InstallShieldReleaseFlags Include=""/>-->
18
 
19
		<!-- The InstallShieldMergeModulePath specifies what directories are
20
		searched for Merge Modules -->
21
		<!--<InstallShieldMergeModulePath Include=""/>-->
22
	</ItemGroup>
23
 
24
	<ItemGroup>
25
		<!-- The ProjectReference items refer to any Visual Studio solutions you want to automatically probe for Project Output Groups.  -->
26
		<ProjectReference><Name></Name></ProjectReference>
27
	</ItemGroup>
28
 
29
	<ItemGroup>
30
		<!-- The TaggedOutputs items allow you to explicitly add extra files to output groups. Each item must include both Name and OutputGroup, as well as TargetPath metadata values. -->
31
		<!--<TaggedOutputs Include="C:\My Test Exe.exe">
32
			<Name>My Test Project</Name>
33
			<OutputGroup>Primary output</OutputGroup>
34
			<TargetPath>My Test Exe.exe</TargetPath>
35
		</TaggedOutputs> -->
36
	</ItemGroup>
37
 
38
	<Import Project="$(MSBuildExtensionsPath)\Macrovision\IS11.5\Macrovision.InstallShield.targets"/>
39
 
40
</Project>