aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Native/WixToolset.Core.Native.nuspec
blob: 195ea7b66ba151142d2b8aaabe267d326d238f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
  <metadata minClientVersion="4.0">
    <id>$id$</id>
    <version>$version$</version>
    <authors>$authors$</authors>
    <owners>$authors$</owners>
    <!-- <license type="expression">MS-RL</license> -->
    <licenseUrl>https://licenses.nuget.org/MS-RL</licenseUrl>
    <projectUrl>https://github.com/wixtoolset/Core.Native</projectUrl>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <description>$description$</description>
    <copyright>$copyright$</copyright>

    <dependencies>
      <dependency id="runtime.win.WixToolset.Core.Native" version="$version$" />
<!--
      <dependency id="runtime.win-x86.WixToolset.Core.Native" version="$version$" />
      <dependency id="runtime.win-x64.WixToolset.Core.Native" version="$version$" />
-->
    </dependencies>
  </metadata>

  <files>
    <file src="$id$.dll" target="lib\netstandard2.0" />

    <!--
      These native executables are included in this .nupkg to place the .exe correctly for tests to work.
      That are ignored when published. The dependency above is used when publishing the tools.
     -->
    <file src="..\Win32\wixnative.x86.exe" target="lib\netstandard2.0" />
    <file src="..\Win32\wixnative.x86.pdb" target="lib\netstandard2.0" />
    <file src="..\x64\wixnative.amd64.exe" target="lib\netstandard2.0" />
    <file src="..\x64\wixnative.amd64.pdb" target="lib\netstandard2.0" />
  </files>
</package>