diff options
author | Rob Mensching <rob@firegiant.com> | 2018-07-13 15:08:27 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-07-13 15:08:27 -0700 |
commit | 06835732a8e6e9d18d548fbb4487bcaf5c8e1725 (patch) | |
tree | c10530de5d650115326d68cdd5f016a6a91c9097 /src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj | |
parent | 6b9b24f21f3a9273b0b1b1000a05ba732fcf301f (diff) | |
download | wix-06835732a8e6e9d18d548fbb4487bcaf5c8e1725.tar.gz wix-06835732a8e6e9d18d548fbb4487bcaf5c8e1725.tar.bz2 wix-06835732a8e6e9d18d548fbb4487bcaf5c8e1725.zip |
Fix MSBuild handling of cultures plus add unit tests
Fixes #5847
Diffstat (limited to 'src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj')
-rw-r--r-- | src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj index dcacc55e..5ec5b7fd 100644 --- a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj +++ b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj | |||
@@ -1,19 +1,32 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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. --> | 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 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFramework>netcoreapp2.1</TargetFramework> | 6 | <TargetFramework>net461</TargetFramework> |
7 | <Description></Description> | 7 | <IsPackable>false</IsPackable> |
8 | <Title>WiX Toolset Tests for MSBuild Tasks</Title> | ||
9 | <DebugType>embedded</DebugType> | 8 | <DebugType>embedded</DebugType> |
10 | </PropertyGroup> | 9 | </PropertyGroup> |
10 | |||
11 | <ItemGroup> | ||
12 | <Content Include="TestData\SimpleMsiPackage\MsiPackage\Package.en-us.wxl" CopyToOutputDirectory="PreserveNewest" /> | ||
13 | <Content Include="TestData\SimpleMsiPackage\MsiPackage\Package.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
14 | <Content Include="TestData\SimpleMsiPackage\MsiPackage\PackageComponents.wxs" CopyToOutputDirectory="PreserveNewest" /> | ||
15 | <Content Include="TestData\SimpleMsiPackage\MsiPackage\data\test.txt" CopyToOutputDirectory="PreserveNewest" /> | ||
16 | </ItemGroup> | ||
17 | |||
18 | <ItemGroup> | ||
19 | <ProjectReference Include="..\..\WixToolset.BuildTasks\WixToolset.BuildTasks.csproj" /> | ||
20 | </ItemGroup> | ||
11 | 21 | ||
12 | <ItemGroup> | 22 | <ItemGroup> |
13 | <!-- <ProjectReference Include="..\..\WixToolset.BuildTasks\WixToolset.BuildTasks.csproj" /> --> | 23 | <PackageReference Include="Microsoft.Build.Tasks.Core" Version="14.3" PrivateAssets="All" /> |
24 | <PackageReference Include="WixBuildTools.TestSupport" Version="4.0.*" /> | ||
14 | </ItemGroup> | 25 | </ItemGroup> |
15 | 26 | ||
16 | <ItemGroup> | 27 | <ItemGroup> |
17 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" /> | 28 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" /> |
29 | <PackageReference Include="xunit" Version="2.3.1" /> | ||
30 | <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
18 | </ItemGroup> | 31 | </ItemGroup> |
19 | </Project> | 32 | </Project> |