diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-06-24 14:23:51 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-06-24 20:36:35 +1000 |
| commit | c50a0e000ab1812ec4781ace349a5d84fa01c8e4 (patch) | |
| tree | 22b8dbdb29113876a4e4d81585db9a796c5e3e37 /src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | |
| parent | d7bd6328ea9227f76b5337f703de9460a1738302 (diff) | |
| download | wix-c50a0e000ab1812ec4781ace349a5d84fa01c8e4.tar.gz wix-c50a0e000ab1812ec4781ace349a5d84fa01c8e4.tar.bz2 wix-c50a0e000ab1812ec4781ace349a5d84fa01c8e4.zip | |
Merge the native nupkg into the Core.Native nupkg.
There was no benefit in separating the native assets into its own package, the runtime.<rid>.PackageName strategy is for binaries to be copied to the root of project and therefore doesn't support the portable scenario where all available assets are required.
Manually author the repository element in the nupkg for SourceLink.
Diffstat (limited to 'src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec')
| -rw-r--r-- | src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec index 1ff5538b..e862b1ba 100644 --- a/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec +++ b/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec | |||
| @@ -5,30 +5,25 @@ | |||
| 5 | <version>$version$</version> | 5 | <version>$version$</version> |
| 6 | <authors>$authors$</authors> | 6 | <authors>$authors$</authors> |
| 7 | <owners>$authors$</owners> | 7 | <owners>$authors$</owners> |
| 8 | <!-- <license type="expression">MS-RL</license> --> | 8 | <license type="expression">MS-RL</license> |
| 9 | <licenseUrl>https://licenses.nuget.org/MS-RL</licenseUrl> | ||
| 10 | <projectUrl>https://github.com/wixtoolset/Core.Native</projectUrl> | 9 | <projectUrl>https://github.com/wixtoolset/Core.Native</projectUrl> |
| 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 12 | <description>$description$</description> | 11 | <description>$description$</description> |
| 13 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
| 14 | 13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | |
| 15 | <dependencies> | 14 | <dependencies> |
| 16 | <dependency id="runtime.win.WixToolset.Core.Native" version="$version$" /> | 15 | <group targetFramework=".NETStandard2.0" /> |
| 17 | <!-- | ||
| 18 | <dependency id="runtime.win-x86.WixToolset.Core.Native" version="$version$" /> | ||
| 19 | <dependency id="runtime.win-x64.WixToolset.Core.Native" version="$version$" /> | ||
| 20 | --> | ||
| 21 | </dependencies> | 16 | </dependencies> |
| 22 | </metadata> | 17 | </metadata> |
| 23 | 18 | ||
| 24 | <files> | 19 | <files> |
| 25 | <file src="$id$.dll" target="lib\netstandard2.0" /> | 20 | <file src="netstandard2.0\$id$.dll" target="lib\netstandard2.0" /> |
| 26 | 21 | ||
| 27 | <!-- | 22 | <file src="$mergemoddir$Win32\mergemod.dll" target="runtimes\win-x86\native" /> |
| 28 | <file src="..\Win32\wixnative.x86.exe" target="lib\netstandard2.0" /> | 23 | <file src="Win32\wixnative.exe" target="runtimes\win-x86\native" /> |
| 29 | <file src="..\Win32\wixnative.x86.pdb" target="lib\netstandard2.0" /> | 24 | <file src="Win32\wixnative.pdb" target="runtimes\win-x86\native" /> |
| 30 | <file src="..\x64\wixnative.amd64.exe" target="lib\netstandard2.0" /> | 25 | <file src="$mergemoddir$x64\mergemod.dll" target="runtimes\win-x64\native" /> |
| 31 | <file src="..\x64\wixnative.amd64.pdb" target="lib\netstandard2.0" /> | 26 | <file src="x64\wixnative.exe" target="runtimes\win-x64\native" /> |
| 32 | --> | 27 | <file src="x64\wixnative.pdb" target="runtimes\win-x64\native" /> |
| 33 | </files> | 28 | </files> |
| 34 | </package> | 29 | </package> |
