blob: e044c6b13e10f530cdc173ce6cb6958e86d9bf18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<Description>Full Framework v4 MBA</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
<PackageReference Include="WixToolset.Mba.Core" Version="4.0.*" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Content Include="BootstrapperApplicationData.xml" CopyToOutputDirectory="PreserveNewest" />
<Content Include="WixToolset.Mba.Host.config" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\mbahost\mbahost.vcxproj">
<Project>{12c87c77-3547-44f8-8134-29bc915cb19d}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
<ProjectReference Include="..\..\..\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj">
<Project>{F2BA1935-70FA-4156-B161-FD03850B4FAA}</Project>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<OutputItemType>Content</OutputItemType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<MbaHostDependency Include="$(BaseOutputPath)$(Configuration)\Win32\mbahost.dll" />
</ItemGroup>
<Target Name="CopyMbaHostDependencies" AfterTargets="Build">
<Copy DestinationFolder="$(OutputPath)" SourceFiles="@(MbaHostDependency)" SkipUnchangedFiles="true" />
</Target>
</Project>
|