diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-07-13 14:19:31 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-07-13 14:19:31 -0700 |
| commit | e6897a667c06125beced3921b16cf0e3a1b21bc1 (patch) | |
| tree | dcd69c76ecffdf8690bc3a50e90cbf1c6cfc0610 /src/WixToolset.Core.Native | |
| parent | 1c3d51462cc7574b318cba2f30552de50348f803 (diff) | |
| download | wix-e6897a667c06125beced3921b16cf0e3a1b21bc1.tar.gz wix-e6897a667c06125beced3921b16cf0e3a1b21bc1.tar.bz2 wix-e6897a667c06125beced3921b16cf0e3a1b21bc1.zip | |
Attempt to move wixnative.exe to independent runtime .nupkg
Diffstat (limited to 'src/WixToolset.Core.Native')
| -rw-r--r-- | src/WixToolset.Core.Native/WixNativeExe.cs | 2 | ||||
| -rw-r--r-- | src/WixToolset.Core.Native/WixToolset.Core.Native.csproj | 4 | ||||
| -rw-r--r-- | src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | 8 |
3 files changed, 9 insertions, 5 deletions
diff --git a/src/WixToolset.Core.Native/WixNativeExe.cs b/src/WixToolset.Core.Native/WixNativeExe.cs index 8626bea3..92dcfdda 100644 --- a/src/WixToolset.Core.Native/WixNativeExe.cs +++ b/src/WixToolset.Core.Native/WixNativeExe.cs | |||
| @@ -19,7 +19,7 @@ namespace WixToolset.Core.Native | |||
| 19 | 19 | ||
| 20 | static WixNativeExe() | 20 | static WixNativeExe() |
| 21 | { | 21 | { |
| 22 | PathToWixNativeExe = Path.Combine(Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).LocalPath), "x86\\wixnative.exe"); | 22 | PathToWixNativeExe = Path.Combine(Path.GetDirectoryName(new Uri(Assembly.GetExecutingAssembly().CodeBase).LocalPath), "wixnative.x86.exe"); |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | public WixNativeExe(params object[] args) | 25 | public WixNativeExe(params object[] args) |
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj index 51238020..a95f8852 100644 --- a/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj +++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.csproj | |||
| @@ -20,10 +20,10 @@ | |||
| 20 | 20 | ||
| 21 | <ItemGroup> | 21 | <ItemGroup> |
| 22 | <NativeProjectOutput Include="$(OutputPath)..\Win32\*.exe;$(OutputPath)..\Win32\*.pdb"> | 22 | <NativeProjectOutput Include="$(OutputPath)..\Win32\*.exe;$(OutputPath)..\Win32\*.pdb"> |
| 23 | <TargetRelativeFolder>x86\</TargetRelativeFolder> | 23 | <TargetRelativeFolder>.\</TargetRelativeFolder> |
| 24 | </NativeProjectOutput> | 24 | </NativeProjectOutput> |
| 25 | <NativeProjectOutput Include="$(OutputPath)..\x64\*.exe;$(OutputPath)..\x64\*.pdb"> | 25 | <NativeProjectOutput Include="$(OutputPath)..\x64\*.exe;$(OutputPath)..\x64\*.pdb"> |
| 26 | <TargetRelativeFolder>x64\</TargetRelativeFolder> | 26 | <TargetRelativeFolder>.\</TargetRelativeFolder> |
| 27 | </NativeProjectOutput> | 27 | </NativeProjectOutput> |
| 28 | 28 | ||
| 29 | <AllItemsFullPathWithTargetPath Include="@(NativeProjectOutput->'%(FullPath)')"> | 29 | <AllItemsFullPathWithTargetPath Include="@(NativeProjectOutput->'%(FullPath)')"> |
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec index 88dd4d34..3394f8ab 100644 --- a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec +++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | |||
| @@ -10,19 +10,23 @@ | |||
| 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 11 | <description>$description$</description> | 11 | <description>$description$</description> |
| 12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
| 13 | <!-- | 13 | |
| 14 | <dependencies> | 14 | <dependencies> |
| 15 | <dependency id="runtime.win.WixToolset.Core.Native" version="$version$" /> | ||
| 16 | <!-- | ||
| 15 | <dependency id="runtime.win-x86.WixToolset.Core.Native" version="$version$" /> | 17 | <dependency id="runtime.win-x86.WixToolset.Core.Native" version="$version$" /> |
| 16 | <dependency id="runtime.win-x64.WixToolset.Core.Native" version="$version$" /> | 18 | <dependency id="runtime.win-x64.WixToolset.Core.Native" version="$version$" /> |
| 19 | --> | ||
| 17 | </dependencies> | 20 | </dependencies> |
| 18 | --> | ||
| 19 | </metadata> | 21 | </metadata> |
| 20 | 22 | ||
| 21 | <files> | 23 | <files> |
| 22 | <file src="$id$.dll" target="lib\netstandard2.0" /> | 24 | <file src="$id$.dll" target="lib\netstandard2.0" /> |
| 25 | <!-- | ||
| 23 | <file src="..\Win32\wixnative.exe" target="lib\netstandard2.0\x86" /> | 26 | <file src="..\Win32\wixnative.exe" target="lib\netstandard2.0\x86" /> |
| 24 | <file src="..\Win32\wixnative.pdb" target="lib\netstandard2.0\x86" /> | 27 | <file src="..\Win32\wixnative.pdb" target="lib\netstandard2.0\x86" /> |
| 25 | <file src="..\x64\wixnative.exe" target="lib\netstandard2.0\x64" /> | 28 | <file src="..\x64\wixnative.exe" target="lib\netstandard2.0\x64" /> |
| 26 | <file src="..\x64\wixnative.pdb" target="lib\netstandard2.0\x64" /> | 29 | <file src="..\x64\wixnative.pdb" target="lib\netstandard2.0\x64" /> |
| 30 | --> | ||
| 27 | </files> | 31 | </files> |
| 28 | </package> | 32 | </package> |
