diff options
Diffstat (limited to 'src/ext/Bal/test/WixToolsetTest.Bal/WixToolsetTest.Bal.csproj')
-rw-r--r-- | src/ext/Bal/test/WixToolsetTest.Bal/WixToolsetTest.Bal.csproj | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/ext/Bal/test/WixToolsetTest.Bal/WixToolsetTest.Bal.csproj b/src/ext/Bal/test/WixToolsetTest.Bal/WixToolsetTest.Bal.csproj new file mode 100644 index 00000000..c9ab4219 --- /dev/null +++ b/src/ext/Bal/test/WixToolsetTest.Bal/WixToolsetTest.Bal.csproj | |||
@@ -0,0 +1,43 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project Sdk="Microsoft.NET.Sdk"> | ||
5 | <PropertyGroup> | ||
6 | <TargetFramework>netcoreapp3.1</TargetFramework> | ||
7 | <IsPackable>false</IsPackable> | ||
8 | </PropertyGroup> | ||
9 | |||
10 | <ItemGroup> | ||
11 | <Content Include="TestData\MBA\Bundle.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
12 | <Content Include="TestData\Overridable\Bundle.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
13 | <Content Include="TestData\WixStdBa\Bundle.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
14 | <Content Include="TestData\WixStdBa\Data\test.msi" CopyToOutputDirectory="PreserveNewest" /> | ||
15 | <Content Include="TestData\WixStdBa\DisplayInternalUIConditionBundle.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <Target Name="CopyExtensions" AfterTargets="Build"> | ||
19 | <Copy DestinationFolder="$(OutputPath)" SourceFiles="@(WixExtension)" /> | ||
20 | </Target> | ||
21 | |||
22 | <ItemGroup> | ||
23 | <ProjectReference Include="..\..\wixext\WixToolset.Bal.wixext.csproj" /> | ||
24 | </ItemGroup> | ||
25 | |||
26 | <ItemGroup> | ||
27 | <PackageReference Include="WixToolset.Core" Version="4.0.*" /> | ||
28 | <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> | ||
29 | <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> | ||
30 | <PackageReference Include="WixToolset.Core.TestPackage" Version="4.0.*" /> | ||
31 | <PackageReference Include="WixToolset.Data" Version="4.0.*" /> | ||
32 | </ItemGroup> | ||
33 | |||
34 | <ItemGroup> | ||
35 | <PackageReference Include="WixBuildTools.TestSupport" Version="4.0.*" /> | ||
36 | </ItemGroup> | ||
37 | |||
38 | <ItemGroup> | ||
39 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" /> | ||
40 | <PackageReference Include="xunit" Version="2.4.1" /> | ||
41 | <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" /> | ||
42 | </ItemGroup> | ||
43 | </Project> | ||