@joebigelow / wix / commits / 758bcf4b

Fix the dependencies of the WixToolset.Core.TestPackage.nupkg

Rob Mensching committed Dec 22, 2018 at 14:19 UTC 758bcf4bb6d61dd9d6471d9f9629d4f7b18d43cb
2 files changed +13
src/WixToolset.Core.TestPackage/WixToolset.Core.TestPackage.csproj
+9
@@ -22,6 +22,15 @@
22 <_PackageFiles Include="$(OutputPath)\WixToolset.Core.WindowsInstaller.dll" BuildAction="None" PackagePath="lib\$(TargetFramework)\" />
23 </ItemGroup>
24
25 + <!--
26 + These package references duplicate the dependencies in WixToolset.Core.csproj to ensure
27 + WixToolset.Core.dll's dependencies are referenced by this test .nupkg.
28 + -->
29 + <ItemGroup>
30 + <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.5.0" />
31 + <PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" />
32 + </ItemGroup>
33 +
34 <ItemGroup>
35 <PackageReference Include="WixToolset.Data" Version="4.0.*" />
36 <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" />
src/WixToolset.Core/WixToolset.Core.csproj
+4
@@ -16,6 +16,10 @@
16 <PackageReference Include="WixToolset.Core.Native" Version="4.0.*" />
17 </ItemGroup>
18
19 + <!--
20 + These package references are duplicated in WixToolset.Core.TestPackage.csproj. If
21 + you update these here, be sure to update them there.
22 + -->
23 <ItemGroup>
24 <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.5.0" />
25 <PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" />