aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-06-24 16:18:36 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-06-24 20:45:05 +1000
commit57fc25f5bf81dcc5edbf1b1e7c331dde8fe4578f (patch)
tree3b681b61a141f1aa668d856cfc6f98f6fc856e83 /src/WixToolset.Mba.Core
parent69ed2c07285729b55a0a26adcf19ce684c437a44 (diff)
downloadwix-57fc25f5bf81dcc5edbf1b1e7c331dde8fe4578f.tar.gz
wix-57fc25f5bf81dcc5edbf1b1e7c331dde8fe4578f.tar.bz2
wix-57fc25f5bf81dcc5edbf1b1e7c331dde8fe4578f.zip
Merge the native nupkg into the Mba.Core nupkg.
Manually author the repository element in the nupkg for SourceLink.
Diffstat (limited to 'src/WixToolset.Mba.Core')
-rw-r--r--src/WixToolset.Mba.Core/WixToolset.Mba.Core.csproj2
-rw-r--r--src/WixToolset.Mba.Core/WixToolset.Mba.Core.nuspec24
2 files changed, 17 insertions, 9 deletions
diff --git a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.csproj b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.csproj
index 6c5f0050..5ffd617a 100644
--- a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.csproj
+++ b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.csproj
@@ -61,7 +61,7 @@
61 <Target Name="SetNuspecProperties" AfterTargets="GetBuildVersion"> 61 <Target Name="SetNuspecProperties" AfterTargets="GetBuildVersion">
62 <PropertyGroup> 62 <PropertyGroup>
63 <NuspecBasePath>$(OutputPath)</NuspecBasePath> 63 <NuspecBasePath>$(OutputPath)</NuspecBasePath>
64 <NuspecProperties>Configuration=$(Configuration);Id=$(MSBuildThisFileName);Version=$(BuildVersionSimple);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties> 64 <NuspecProperties>Id=$(MSBuildThisFileName);Version=$(BuildVersionSimple);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description);RepositoryCommit=$(SourceRevisionId);RepositoryType=$(RepositoryType);RepositoryUrl=$(PrivateRepositoryUrl)</NuspecProperties>
65 </PropertyGroup> 65 </PropertyGroup>
66 </Target> 66 </Target>
67</Project> \ No newline at end of file 67</Project> \ No newline at end of file
diff --git a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.nuspec b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.nuspec
index 95d229b6..3a9f05df 100644
--- a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.nuspec
+++ b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.nuspec
@@ -1,25 +1,33 @@
1<?xml version="1.0"?> 1<?xml version="1.0"?>
2<package > 2<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3 <metadata> 3 <metadata minClientVersion="4.0">
4 <id>$id$</id> 4 <id>$id$</id>
5 <version>$version$</version> 5 <version>$version$</version>
6 <authors>WiX Toolset Team</authors> 6 <authors>$authors$</authors>
7 <owners>WiX Toolset Team</owners> 7 <owners>$authors$</owners>
8 <license type="expression">MS-RL</license> 8 <license type="expression">MS-RL</license>
9 <projectUrl>https://github.com/wixtoolset/balutil</projectUrl> 9 <projectUrl>https://github.com/wixtoolset/balutil</projectUrl>
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 <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" />
14 <dependencies> 14 <dependencies>
15 <group> 15 <group targetFramework=".NETFramework2.0" />
16 <dependency id="runtime.win.WixToolset.Mba.Core" version="$version$" /> 16 <group targetFramework=".NETStandard2.0" />
17 </group>
18 </dependencies> 17 </dependencies>
19 </metadata> 18 </metadata>
20 19
21 <files> 20 <files>
22 <file src="net20\$id$.dll" target="lib\net20" /> 21 <file src="net20\$id$.dll" target="lib\net20" />
23 <file src="netstandard2.0\$id$.dll" target="lib\netstandard2.0" /> 22 <file src="netstandard2.0\$id$.dll" target="lib\netstandard2.0" />
23
24 <file src="v142\ARM\mbanative.dll" target="runtimes\win-arm\native" />
25 <file src="v142\ARM\mbanative.pdb" target="runtimes\win-arm\native" />
26 <file src="v142\ARM64\mbanative.dll" target="runtimes\win-arm64\native" />
27 <file src="v142\ARM64\mbanative.pdb" target="runtimes\win-arm64\native" />
28 <file src="v142\x64\mbanative.dll" target="runtimes\win-x64\native" />
29 <file src="v142\x64\mbanative.pdb" target="runtimes\win-x64\native" />
30 <file src="v142\x86\mbanative.dll" target="runtimes\win-x86\native" />
31 <file src="v142\x86\mbanative.pdb" target="runtimes\win-x86\native" />
24 </files> 32 </files>
25</package> 33</package>