@joebigelow / wix-1 / commits / f8b6183e

Include wixnative.exe in the Core.Native .nupkg

This is done to place the wixnative.exe correctly for testing purposes. The dependency on runtime.win.WixToolset.Core.Native.nupkg is used to deliver wixnative.exe when publishing.

Rob Mensching committed Dec 22, 2018 at 11:05 UTC f8b6183ed434ee9cb07d8adfa5ac660b1ae1cce3
1 file changed +9 -6
src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec
+9 -6
@@ -23,11 +23,14 @@
23
24 <files>
25 <file src="$id$.dll" target="lib\netstandard2.0" />
26 -<!--
27 - <file src="..\Win32\wixnative.exe" target="lib\netstandard2.0\x86" />
28 - <file src="..\Win32\wixnative.pdb" target="lib\netstandard2.0\x86" />
29 - <file src="..\x64\wixnative.exe" target="lib\netstandard2.0\x64" />
30 - <file src="..\x64\wixnative.pdb" target="lib\netstandard2.0\x64" />
31 - -->
26 +
27 + <!--
28 + These native executables are included in this .nupkg to place the .exe correctly for tests to work.
29 + That are ignored when published. The dependency above is used when publishing the tools.
30 + -->
31 + <file src="..\Win32\wixnative.x86.exe" target="lib\netstandard2.0" />
32 + <file src="..\Win32\wixnative.x86.pdb" target="lib\netstandard2.0" />
33 + <file src="..\x64\wixnative.amd64.exe" target="lib\netstandard2.0" />
34 + <file src="..\x64\wixnative.amd64.pdb" target="lib\netstandard2.0" />
35 </files>
36 </package>