diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-03 16:05:08 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-03 16:05:08 -0700 |
commit | 7bdd5e9159b298e0411afa689a06c44e36e293cd (patch) | |
tree | 57d24ea7fdd8025baf6a822a99b588c9df74a60d /src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj | |
parent | ca02e81316d700a3647414f355eab4d2115d6163 (diff) | |
download | wix-7bdd5e9159b298e0411afa689a06c44e36e293cd.tar.gz wix-7bdd5e9159b298e0411afa689a06c44e36e293cd.tar.bz2 wix-7bdd5e9159b298e0411afa689a06c44e36e293cd.zip |
Move NetFx.wixext into ext
Diffstat (limited to 'src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj')
-rw-r--r-- | src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj b/src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj new file mode 100644 index 00000000..1c41d176 --- /dev/null +++ b/src/ext/NetFx/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj | |||
@@ -0,0 +1,40 @@ | |||
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 | <DebugType>embedded</DebugType> | ||
8 | <IsPackable>false</IsPackable> | ||
9 | </PropertyGroup> | ||
10 | |||
11 | <ItemGroup> | ||
12 | <Content Include="TestData\**" CopyToOutputDirectory="PreserveNewest" /> | ||
13 | </ItemGroup> | ||
14 | |||
15 | <ItemGroup> | ||
16 | <ProjectReference Include="..\..\wixext\WixToolset.Netfx.wixext.csproj" /> | ||
17 | </ItemGroup> | ||
18 | |||
19 | <ItemGroup> | ||
20 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.*" /> | ||
21 | <PackageReference Include="WixToolset.Core" Version="4.0.*" /> | ||
22 | <PackageReference Include="WixToolset.Core.Burn" Version="4.0.*" /> | ||
23 | <PackageReference Include="WixToolset.Core.WindowsInstaller" Version="4.0.*" /> | ||
24 | <PackageReference Include="WixToolset.Core.TestPackage" Version="4.0.*" /> | ||
25 | </ItemGroup> | ||
26 | |||
27 | <ItemGroup> | ||
28 | <PackageReference Include="WixBuildTools.TestSupport" Version="4.0.*" /> | ||
29 | </ItemGroup> | ||
30 | |||
31 | <ItemGroup> | ||
32 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" /> | ||
33 | <PackageReference Include="xunit" Version="2.4.1" /> | ||
34 | <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" /> | ||
35 | </ItemGroup> | ||
36 | |||
37 | <Target Name="CopyExtensions" AfterTargets="Build"> | ||
38 | <Copy DestinationFolder="$(OutputPath)" SourceFiles="@(WixExtension)" /> | ||
39 | </Target> | ||
40 | </Project> | ||