| 1 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|---|
| 2 | <PropertyGroup> |
|---|
| 3 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|---|
| 4 | <Platform Condition=" '$(Platform)' == '' ">x86</Platform> |
|---|
| 5 | <ProductVersion>3.0</ProductVersion> |
|---|
| 6 | <ProjectGuid>{318964cf-278d-41b2-a825-b9a0d1f5d766}</ProjectGuid> |
|---|
| 7 | <SchemaVersion>2.0</SchemaVersion> |
|---|
| 8 | <OutputName>Eraser</OutputName> |
|---|
| 9 | <OutputType>Package</OutputType> |
|---|
| 10 | <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.0\Wix.targets</WixTargetsPath> |
|---|
| 11 | </PropertyGroup> |
|---|
| 12 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> |
|---|
| 13 | <OutputPath>..\bin\Installer\$(Platform)\$(Configuration)\</OutputPath> |
|---|
| 14 | <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
|---|
| 15 | <DefineConstants>Debug</DefineConstants> |
|---|
| 16 | <VerboseOutput>True</VerboseOutput> |
|---|
| 17 | </PropertyGroup> |
|---|
| 18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> |
|---|
| 19 | <OutputPath>..\bin\Installer\$(Platform)\$(Configuration)\</OutputPath> |
|---|
| 20 | <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath> |
|---|
| 21 | </PropertyGroup> |
|---|
| 22 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> |
|---|
| 23 | <DefineConstants>Debug</DefineConstants> |
|---|
| 24 | <VerboseOutput>True</VerboseOutput> |
|---|
| 25 | <OutputPath>..\bin\Installer\$(Platform)\$(Configuration)\</OutputPath> |
|---|
| 26 | <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> |
|---|
| 27 | </PropertyGroup> |
|---|
| 28 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> |
|---|
| 29 | <OutputPath>..\bin\Installer\$(Platform)\$(Configuration)\</OutputPath> |
|---|
| 30 | <IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath> |
|---|
| 31 | </PropertyGroup> |
|---|
| 32 | <ItemGroup> |
|---|
| 33 | <Compile Include="Eraser.wxs" /> |
|---|
| 34 | </ItemGroup> |
|---|
| 35 | <ItemGroup> |
|---|
| 36 | <WixExtension Include="WixUIExtension"> |
|---|
| 37 | <HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath> |
|---|
| 38 | </WixExtension> |
|---|
| 39 | </ItemGroup> |
|---|
| 40 | <ItemGroup> |
|---|
| 41 | <Content Include="License.rtf" /> |
|---|
| 42 | <Content Include="Resources\Exclamation.ico" /> |
|---|
| 43 | <Content Include="Resources\Information.ico" /> |
|---|
| 44 | <Content Include="Resources\New Folder.ico" /> |
|---|
| 45 | </ItemGroup> |
|---|
| 46 | <ItemGroup> |
|---|
| 47 | <Folder Include="Resources\" /> |
|---|
| 48 | </ItemGroup> |
|---|
| 49 | <Import Project="$(WixTargetsPath)" /> |
|---|
| 50 | <!-- |
|---|
| 51 | To modify your build process, add your task inside one of the targets below and uncomment it. |
|---|
| 52 | Other similar extension points exist, see Wix.targets. |
|---|
| 53 | <Target Name="BeforeBuild"> |
|---|
| 54 | </Target> |
|---|
| 55 | <Target Name="AfterBuild"> |
|---|
| 56 | </Target> |
|---|
| 57 | --> |
|---|
| 58 | </Project> |
|---|