59 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | |
|   <Import Project="..\packages\WiX.3.11.0\build\wix.props" Condition="Exists('..\packages\WiX.3.11.0\build\wix.props')" />
 | |
|   <PropertyGroup>
 | |
|     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 | |
|     <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
 | |
|     <ProductVersion>3.10</ProductVersion>
 | |
|     <ProjectGuid>ed45b527-65f5-469d-a818-b13a27bc9840</ProjectGuid>
 | |
|     <SchemaVersion>2.0</SchemaVersion>
 | |
|     <OutputName>EduNetworkBuilderSetup</OutputName>
 | |
|     <OutputType>Package</OutputType>
 | |
|     <NuGetPackageImportStamp>
 | |
|     </NuGetPackageImportStamp>
 | |
|   </PropertyGroup>
 | |
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
 | |
|     <OutputPath>bin\$(Configuration)\</OutputPath>
 | |
|     <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
 | |
|     <DefineConstants>Debug</DefineConstants>
 | |
|   </PropertyGroup>
 | |
|   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
 | |
|     <OutputPath>bin\$(Configuration)\</OutputPath>
 | |
|     <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
 | |
|   </PropertyGroup>
 | |
|   <ItemGroup>
 | |
|     <Compile Include="Product.wxs" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <Content Include="packages.config" />
 | |
|   </ItemGroup>
 | |
|   <ItemGroup>
 | |
|     <ProjectReference Include="..\EduNetworkBuilder\EduNetworkBuilder.csproj">
 | |
|       <Name>EduNetworkBuilder</Name>
 | |
|       <Project>{5662a48f-e771-4c29-b120-54d65fbc4a14}</Project>
 | |
|       <Private>True</Private>
 | |
|       <DoNotHarvest>True</DoNotHarvest>
 | |
|       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
 | |
|       <RefTargetDir>INSTALLFOLDER</RefTargetDir>
 | |
|     </ProjectReference>
 | |
|   </ItemGroup>
 | |
|   <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
 | |
|   <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
 | |
|   <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
 | |
|     <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
 | |
|   </Target>
 | |
|   <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
 | |
|     <PropertyGroup>
 | |
|       <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
 | |
|     </PropertyGroup>
 | |
|     <Error Condition="!Exists('..\packages\WiX.3.11.0\build\wix.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\WiX.3.11.0\build\wix.props'))" />
 | |
|   </Target>
 | |
|   <!--
 | |
| 	To modify your build process, add your task inside one of the targets below and uncomment it.
 | |
| 	Other similar extension points exist, see Wix.targets.
 | |
| 	<Target Name="BeforeBuild">
 | |
| 	</Target>
 | |
| 	<Target Name="AfterBuild">
 | |
| 	</Target>
 | |
| 	-->
 | |
| </Project> |