diff options
Diffstat (limited to 'src/test/wixcop/WixCopTests.csproj')
-rw-r--r-- | src/test/wixcop/WixCopTests.csproj | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/test/wixcop/WixCopTests.csproj b/src/test/wixcop/WixCopTests.csproj new file mode 100644 index 00000000..0ae50dc8 --- /dev/null +++ b/src/test/wixcop/WixCopTests.csproj | |||
@@ -0,0 +1,41 @@ | |||
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>net461</TargetFramework> | ||
7 | <IsPackable>false</IsPackable> | ||
8 | <DebugType>embedded</DebugType> | ||
9 | </PropertyGroup> | ||
10 | <ItemGroup> | ||
11 | <None Remove="TestData\SingleFile\ConvertedSingleFile.wxs" /> | ||
12 | <None Remove="TestData\SingleFile\SingleFile.wxs" /> | ||
13 | </ItemGroup> | ||
14 | <ItemGroup> | ||
15 | <Content Include="TestData\SingleFile\ConvertedSingleFile.wxs"> | ||
16 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
17 | </Content> | ||
18 | <Content Include="TestData\SingleFile\SingleFile.wxs"> | ||
19 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
20 | </Content> | ||
21 | </ItemGroup> | ||
22 | |||
23 | <ItemGroup> | ||
24 | <ProjectReference Include="..\..\wixcop\WixCop.csproj" /> | ||
25 | </ItemGroup> | ||
26 | |||
27 | <ItemGroup> | ||
28 | <ProjectReference Include="$(WixToolsetRootFolder)\Core\src\WixToolset.Core.TestPackage\WixToolset.Core.TestPackage.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Core\README.md') " /> | ||
29 | <PackageReference Include="WixToolset.Core.TestPackage" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Core\README.md') " /> | ||
30 | </ItemGroup> | ||
31 | |||
32 | <ItemGroup> | ||
33 | <PackageReference Include="WixBuildTools.TestSupport" Version="4.0.*" /> | ||
34 | </ItemGroup> | ||
35 | |||
36 | <ItemGroup> | ||
37 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> | ||
38 | <PackageReference Include="xunit" Version="2.4.0" /> | ||
39 | <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> | ||
40 | </ItemGroup> | ||
41 | </Project> | ||