81 lines
4.1 KiB
XML
81 lines
4.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">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<ProductVersion>3.10</ProductVersion>
|
|
<ProjectGuid>a7f7585a-c46a-4436-9f6e-17629325ce58</ProjectGuid>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<OutputType>Package</OutputType>
|
|
<OutputName>SetupVS19</OutputName>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<DefineConstants>Debug</DefineConstants>
|
|
<LinkerAdditionalOptions>
|
|
-b "$(SolutionDir)DD-Record-Organizer\bin\$(Configuration)"
|
|
-b "$(SolutionDir)RecordOrganizer_RightManager\bin\$(Configuration)"
|
|
-cultures:de-DE,en-US
|
|
</LinkerAdditionalOptions>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Product.wxs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Config.wxi" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<WixExtension Include="WixUtilExtension">
|
|
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
|
<Name>WixUtilExtension</Name>
|
|
</WixExtension>
|
|
<WixExtension Include="WixUIExtension">
|
|
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
|
|
<Name>WixUIExtension</Name>
|
|
</WixExtension>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DD-Record-Organizer\OrgFlow.vbproj">
|
|
<Name>orgFLOW</Name>
|
|
<Project>{bdcc148b-4c84-4a48-80cf-4c56057294e0}</Project>
|
|
<Private>True</Private>
|
|
<DoNotHarvest>True</DoNotHarvest>
|
|
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
|
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\RecordOrganizer_RightManager\RecordOrganizer_RightManager.vbproj">
|
|
<Name>RecordOrganizer_RightManager</Name>
|
|
<Project>{f1c8a9df-2452-4e3b-9c32-0c792f6ed2e6}</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="BeforeBuild">
|
|
<!-- Get the programs assembly version from the .exe file -->
|
|
<GetAssemblyIdentity AssemblyFiles="..\DD-Record-Organizer\bin\$(Configuration)\OrgFlow.exe">
|
|
<Output TaskParameter="Assemblies" ItemName="AsmInfo" />
|
|
</GetAssemblyIdentity>
|
|
<!-- Store the assembly version number in ProductVersion preprocessor variable -->
|
|
<CreateProperty Value="$(DefineConstants);ProductVersion=%(AsmInfo.Version)">
|
|
<Output TaskParameter="Value" PropertyName="DefineConstants" />
|
|
</CreateProperty>
|
|
<!-- Name the .msi file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
|
<CreateProperty Value="OrgFlow-$(Platform)-%(AsmInfo.Version)">
|
|
<Output TaskParameter="Value" PropertyName="TargetName" />
|
|
</CreateProperty>
|
|
<!-- Name the .wixpdb file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
|
<CreateProperty Value="$(TargetName)$(TargetPdbExt)">
|
|
<Output TaskParameter="Value" PropertyName="TargetPdbName" />
|
|
</CreateProperty>
|
|
</Target>
|
|
</Project> |