@joebigelow / wix / commits / 6b9b24f2

Add missing test project to solution

Rob Mensching committed Jul 12, 2018 at 23:24 UTC 6b9b24f21f3a9273b0b1b1000a05ba732fcf301f
2 files changed +18 -7
WixToolset.Core.sln
+14
@@ -18,6 +18,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WixToolsetTest.CoreIntegrat
18 EndProject
19 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "light", "src\light\light.csproj", "{821DCF25-4E4F-48B1-9DD6-80B01EBF9B16}"
20 EndProject
21 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WixToolsetTest.LightIntegration", "src\test\WixToolsetTest.LightIntegration\WixToolsetTest.LightIntegration.csproj", "{87ED6392-D624-4C7E-80ED-6BE6047A4922}"
22 +EndProject
23 Global
24 GlobalSection(SolutionConfigurationPlatforms) = preSolution
25 Debug|Any CPU = Debug|Any CPU
@@ -124,6 +126,18 @@ Global
126 {821DCF25-4E4F-48B1-9DD6-80B01EBF9B16}.Release|x64.Build.0 = Release|Any CPU
127 {821DCF25-4E4F-48B1-9DD6-80B01EBF9B16}.Release|x86.ActiveCfg = Release|Any CPU
128 {821DCF25-4E4F-48B1-9DD6-80B01EBF9B16}.Release|x86.Build.0 = Release|Any CPU
129 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
130 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|Any CPU.Build.0 = Debug|Any CPU
131 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|x64.ActiveCfg = Debug|Any CPU
132 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|x64.Build.0 = Debug|Any CPU
133 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|x86.ActiveCfg = Debug|Any CPU
134 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Debug|x86.Build.0 = Debug|Any CPU
135 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|Any CPU.ActiveCfg = Release|Any CPU
136 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|Any CPU.Build.0 = Release|Any CPU
137 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|x64.ActiveCfg = Release|Any CPU
138 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|x64.Build.0 = Release|Any CPU
139 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|x86.ActiveCfg = Release|Any CPU
140 + {87ED6392-D624-4C7E-80ED-6BE6047A4922}.Release|x86.Build.0 = Release|Any CPU
141 EndGlobalSection
142 GlobalSection(SolutionProperties) = preSolution
143 HideSolutionNode = FALSE
src/test/WixToolsetTest.LightIntegration/WixToolsetTest.LightIntegration.csproj
+4 -7
@@ -5,11 +5,8 @@
5 <PropertyGroup>
6 <TargetFramework>net461</TargetFramework>
7 <IsPackable>false</IsPackable>
8 + <DebugType>embedded</DebugType>
9 </PropertyGroup>
9 - <ItemGroup>
10 - <None Remove="TestData\Wixout\Package.en-us.wxl" />
11 - <None Remove="TestData\Wixout\test.wixout" />
12 - </ItemGroup>
10
11 <ItemGroup>
12 <Content Include="TestData\Wixout\data\test.txt" CopyToOutputDirectory="PreserveNewest" />
@@ -26,8 +23,8 @@
23 </ItemGroup>
24
25 <ItemGroup>
29 - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0-preview-20170628-02" />
30 - <PackageReference Include="xunit" Version="2.2.0" />
31 - <PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
26 + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
27 + <PackageReference Include="xunit" Version="2.3.1" />
28 + <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
29 </ItemGroup>
30 </Project>