Update nuspec for multi-targeting

This commit is contained in:
Caelan Sayler
2022-01-01 22:33:51 +00:00
parent 9753db5080
commit cd3135dcc7
3 changed files with 42 additions and 19 deletions

View File

@@ -198,8 +198,5 @@ cpp_space_pointer_reference_alignment = left
cpp_space_around_ternary_operator = insert cpp_space_around_ternary_operator = insert
cpp_wrap_preserve_blocks = one_liners cpp_wrap_preserve_blocks = one_liners
[*.csproj] [*.{csproj,manifest,nuspec,wxs}]
indent_size = 2
[*.manifest]
indent_size = 2 indent_size = 2

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1,30 +1,56 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata> <metadata>
<version>0.0.0</version> <!-- should be set on the command line --> <!-- should be set on the command line -->
<authors>Anaïs Betts, Caelan Sayler, GitHub, others</authors> <version>0.0.0</version>
<owners>Caelan Sayler</owners>
<licenseUrl>https://github.com/clowd/Clowd.Squirrel/blob/master/COPYING</licenseUrl>
<projectUrl>https://github.com/clowd/Clowd.Squirrel</projectUrl>
<iconUrl>https://user-images.githubusercontent.com/1287295/131249078-9e131e51-0b66-4dc7-8c0a-99cbea6bcf80.png</iconUrl>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="SharpCompress" version="0.30.1" />
<dependency id="Microsoft.Win32.Registry" version="5.0.0" />
<dependency id="System.IO.Packaging" version="5.0.0" />
</group>
</dependencies>
<id>Clowd.Squirrel</id> <id>Clowd.Squirrel</id>
<title>Squirrel for Windows</title> <title>Squirrel for Windows</title>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An installation and update framework for Windows applications</description> <description>An installation and update framework for Windows applications</description>
<copyright>Copyright © Caelan Sayler 2021</copyright> <copyright>Copyright © Caelan Sayler 2021</copyright>
<authors>Anaïs Betts, Caelan Sayler, GitHub, others</authors>
<owners>Caelan Sayler</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/clowd/Clowd.Squirrel</projectUrl>
<icon>images\Squirrel-Clowd-Logo.png</icon>
<iconUrl>https://user-images.githubusercontent.com/1287295/131249078-9e131e51-0b66-4dc7-8c0a-99cbea6bcf80.png</iconUrl>
<dependencies>
<group targetFramework=".NETFramework4.6.1">
<dependency id="Microsoft.Win32.Registry" version="5.0.0" />
<dependency id="SharpCompress" version="0.30.1" />
<dependency id="System.ValueTuple" version="4.5.0" />
</group>
<group targetFramework="net5.0">
<dependency id="Microsoft.Win32.Registry" version="5.0.0" />
<dependency id="SharpCompress" version="0.30.1" />
</group>
<group targetFramework="net6.0">
<dependency id="Microsoft.Win32.Registry" version="5.0.0" />
<dependency id="SharpCompress" version="0.30.1" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.Win32.Registry" version="5.0.0" />
<dependency id="SharpCompress" version="0.30.1" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Net.Http" targetFramework=".NETFramework4.6.1" />
<frameworkAssembly assemblyName="System.Web" targetFramework=".NETFramework4.6.1" />
</frameworkAssemblies>
</metadata> </metadata>
<files> <files>
<file src="..\build\Release\netstandard2.0\*" target="lib\netstandard2.0" /> <!-- Include all target frameworks -->
<file src="..\build\Release\net461\SquirrelLib.*" target="lib\net461" />
<file src="..\build\Release\net5.0\SquirrelLib.*" target="lib\net5.0" />
<file src="..\build\Release\net6.0\SquirrelLib.*" target="lib\net6.0" />
<file src="..\build\Release\netstandard2.0\SquirrelLib.*" target="lib\netstandard2.0" />
<!-- Binary tools, icon, and build properties -->
<file src="..\build\publish\*" target="tools" /> <file src="..\build\publish\*" target="tools" />
<file src="..\docs\artwork\Squirrel-Clowd-Logo.png" target="images" />
<!--<file src="Clowd.Squirrel.props" target="build" />--> <!--<file src="Clowd.Squirrel.props" target="build" />-->
</files> </files>
</package> </package>