diff options
author | Rob Mensching <rob@firegiant.com> | 2022-11-08 12:50:13 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-11-08 16:20:25 -0800 |
commit | 7e498d6348c26583972ea1cdf7d51dadc8f5b792 (patch) | |
tree | a6de8db79a4d18a6c373385792f07f402b2d2482 /src/ext/Bal | |
parent | 86146e8c044a1aea2ea162701b1fc344d19e4dc3 (diff) | |
download | wix-7e498d6348c26583972ea1cdf7d51dadc8f5b792.tar.gz wix-7e498d6348c26583972ea1cdf7d51dadc8f5b792.tar.bz2 wix-7e498d6348c26583972ea1cdf7d51dadc8f5b792.zip |
Ensure all published .nupkgs have an icon
Diffstat (limited to 'src/ext/Bal')
-rw-r--r-- | src/ext/Bal/WixToolset.Dnc.HostGenerator/WixToolset.Dnc.HostGenerator.nuspec | 4 | ||||
-rw-r--r-- | src/ext/Bal/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/src/ext/Bal/WixToolset.Dnc.HostGenerator/WixToolset.Dnc.HostGenerator.nuspec b/src/ext/Bal/WixToolset.Dnc.HostGenerator/WixToolset.Dnc.HostGenerator.nuspec index 46dd7248..8f4de5e8 100644 --- a/src/ext/Bal/WixToolset.Dnc.HostGenerator/WixToolset.Dnc.HostGenerator.nuspec +++ b/src/ext/Bal/WixToolset.Dnc.HostGenerator/WixToolset.Dnc.HostGenerator.nuspec | |||
@@ -6,17 +6,19 @@ | |||
6 | <title>$title$</title> | 6 | <title>$title$</title> |
7 | <description>$description$</description> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
9 | <icon>wix.png</icon> | ||
9 | <license type="expression">MS-RL</license> | 10 | <license type="expression">MS-RL</license> |
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
11 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
12 | <projectUrl>$projectUrl$</projectUrl> | 13 | <projectUrl>$projectUrl$</projectUrl> |
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
14 | <dependencies> | 15 | <dependencies> |
15 | <dependency id="WixToolset.Mba.Core" version="[$version$,5)" /> | 16 | <dependency id="WixToolset.Mba.Core" version="[$version$,5)" /> |
16 | </dependencies> | 17 | </dependencies> |
17 | </metadata> | 18 | </metadata> |
18 | 19 | ||
19 | <files> | 20 | <files> |
21 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | ||
20 | <file src="$id$.dll" target="analyzers/dotnet/cs" /> | 22 | <file src="$id$.dll" target="analyzers/dotnet/cs" /> |
21 | <file src="build\**\*" target="build" /> | 23 | <file src="build\**\*" target="build" /> |
22 | </files> | 24 | </files> |
diff --git a/src/ext/Bal/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec b/src/ext/Bal/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec index 00fd21ac..bcd7b89a 100644 --- a/src/ext/Bal/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec +++ b/src/ext/Bal/WixToolset.Mba.Host/WixToolset.Mba.Host.nuspec | |||
@@ -1,15 +1,16 @@ | |||
1 | <?xml version="1.0"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <package > | 2 | <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
3 | <metadata> | 3 | <metadata> |
4 | <id>$id$</id> | 4 | <id>$id$</id> |
5 | <version>$version$</version> | 5 | <version>$version$</version> |
6 | <authors>WiX Toolset Team</authors> | 6 | <title>$title$</title> |
7 | <owners>WiX Toolset Team</owners> | 7 | <description>$description$</description> |
8 | <authors>$authors$</authors> | ||
9 | <icon>wix.png</icon> | ||
8 | <license type="expression">MS-RL</license> | 10 | <license type="expression">MS-RL</license> |
9 | <projectUrl>https://github.com/wixtoolset/Bal.wixext</projectUrl> | ||
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
11 | <description>$description$</description> | ||
12 | <copyright>$copyright$</copyright> | 12 | <copyright>$copyright$</copyright> |
13 | <projectUrl>$projectUrl$</projectUrl> | ||
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | 14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> |
14 | <dependencies> | 15 | <dependencies> |
15 | <group targetFramework=".NETFramework2.0" /> | 16 | <group targetFramework=".NETFramework2.0" /> |
@@ -17,6 +18,7 @@ | |||
17 | </metadata> | 18 | </metadata> |
18 | 19 | ||
19 | <files> | 20 | <files> |
21 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | ||
20 | <file src="net20\$id$.config" target="samples" /> | 22 | <file src="net20\$id$.config" target="samples" /> |
21 | <file src="net20\$id$.dll" target="lib\net20" /> | 23 | <file src="net20\$id$.dll" target="lib\net20" /> |
22 | </files> | 24 | </files> |