diff options
author | Rob Mensching <rob@firegiant.com> | 2021-02-28 17:05:45 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-02-28 17:07:44 -0800 |
commit | 2db1935429110622a756960289857c28e7b1d366 (patch) | |
tree | c3167f808ed8108b678d89ab9d3e590c4de1bc28 /src/wixext | |
parent | 92fb1113afda38a9c764cb2d899626745bbdfa3c (diff) | |
download | wix-2db1935429110622a756960289857c28e7b1d366.tar.gz wix-2db1935429110622a756960289857c28e7b1d366.tar.bz2 wix-2db1935429110622a756960289857c28e7b1d366.zip |
Update to latest build process to build .snupkg with only the .pdbs
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/WixToolset.Dependency.wixext.csproj | 8 | ||||
-rw-r--r-- | src/wixext/WixToolset.Dependency.wixext.nuspec | 25 |
2 files changed, 26 insertions, 7 deletions
diff --git a/src/wixext/WixToolset.Dependency.wixext.csproj b/src/wixext/WixToolset.Dependency.wixext.csproj index fcdab28c..b2663231 100644 --- a/src/wixext/WixToolset.Dependency.wixext.csproj +++ b/src/wixext/WixToolset.Dependency.wixext.csproj | |||
@@ -9,8 +9,7 @@ | |||
9 | <Description>WiX Toolset Dependency Extension</Description> | 9 | <Description>WiX Toolset Dependency Extension</Description> |
10 | <Title>WiX Toolset Dependency Extension</Title> | 10 | <Title>WiX Toolset Dependency Extension</Title> |
11 | <IsTool>true</IsTool> | 11 | <IsTool>true</IsTool> |
12 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | 12 | <IncludeSymbols>true</IncludeSymbols> |
13 | <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> | ||
14 | </PropertyGroup> | 13 | </PropertyGroup> |
15 | 14 | ||
16 | <ItemGroup> | 15 | <ItemGroup> |
@@ -18,11 +17,6 @@ | |||
18 | </ItemGroup> | 17 | </ItemGroup> |
19 | 18 | ||
20 | <ItemGroup> | 19 | <ItemGroup> |
21 | <Content Include="$(MSBuildThisFileName).targets" PackagePath="build" /> | ||
22 | <Content Include="$(OutputPath)..\**\*.pdb" PackagePath="pdbs\%(RelativeFolder)" /> | ||
23 | </ItemGroup> | ||
24 | |||
25 | <ItemGroup> | ||
26 | <ProjectReference Include="..\wixlib\dependency.wixproj" ReferenceOutputAssembly="false" Condition=" '$(NCrunch)'=='' " /> | 20 | <ProjectReference Include="..\wixlib\dependency.wixproj" ReferenceOutputAssembly="false" Condition=" '$(NCrunch)'=='' " /> |
27 | </ItemGroup> | 21 | </ItemGroup> |
28 | 22 | ||
diff --git a/src/wixext/WixToolset.Dependency.wixext.nuspec b/src/wixext/WixToolset.Dependency.wixext.nuspec new file mode 100644 index 00000000..ba3eaade --- /dev/null +++ b/src/wixext/WixToolset.Dependency.wixext.nuspec | |||
@@ -0,0 +1,25 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
3 | <metadata minClientVersion="4.0"> | ||
4 | <id>$id$</id> | ||
5 | <version>$version$</version> | ||
6 | <title>$title$</title> | ||
7 | <description>$description$</description> | ||
8 | <authors>$authors$</authors> | ||
9 | <license type="expression">MS-RL</license> | ||
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
11 | <copyright>$copyright$</copyright> | ||
12 | <projectUrl>$projectUrl$</projectUrl> | ||
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | ||
14 | </metadata> | ||
15 | |||
16 | <files> | ||
17 | <file src="$projectFolder$$id$.targets" target="build" /> | ||
18 | |||
19 | <file src="netstandard2.0\$id$.dll" target="tools" /> | ||
20 | |||
21 | <file src="ARM64\*.pdb" target="pdbs\ARM64" /> | ||
22 | <file src="x86\*.pdb" target="pdbs\x86" /> | ||
23 | <file src="x64\*.pdb" target="pdbs\x64" /> | ||
24 | </files> | ||
25 | </package> | ||