File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
+ <metadata >
4
+ <id >UnitsNet.Signed</id >
5
+ <version >3.48.1</version >
6
+ <title >Units.NET (signed)</title >
7
+ <authors >Andreas Gullberg Larsen</authors >
8
+ <owners >Andreas Gullberg Larsen</owners >
9
+ <licenseUrl >https://github.com/anjdreas/UnitsNet/blob/master/LICENSE</licenseUrl >
10
+ <projectUrl >https://github.com/anjdreas/UnitsNet</projectUrl >
11
+ <requireLicenseAcceptance >false</requireLicenseAcceptance >
12
+ <description >Strong name signed edition of Units.NET. Only use this if you need a signed version.</description >
13
+ <summary >Strong name signed edition of Units.NET.</summary >
14
+ <iconUrl >https://raw.githubusercontent.com/anjdreas/UnitsNet/ce85185429be345d77eb2ce09c99d59cc9ab8aed/Docs/Images/logo-32.png</iconUrl >
15
+ <releaseNotes >
16
+ </releaseNotes >
17
+ <copyright >Copyright © 2015 Andreas Gullberg Larsen</copyright >
18
+ <language >en-US</language >
19
+ <tags >unit units measurement si metric imperial abbreviation abbreviations convert conversion parse c# .net immutable</tags >
20
+ </metadata >
21
+ <files >
22
+ <file src =" Artifacts\Bin\Src-signed\AnyCPU_Release\**\UnitsNet.dll" target =" lib" />
23
+ <file src =" UnitsNet\**\*.cs" exclude =" UnitsNet\**\obj\**\*.cs" target =" src" />
24
+ </files >
25
+ </package >
Original file line number Diff line number Diff line change 1
1
@ echo off
2
2
SET ROOT = %~dp0 ..
3
3
SET MainNuspec = %ROOT% \Build\UnitsNet.nuspec
4
+ SET MainSignedNuspec = %ROOT% \Build\UnitsNet.Signed.nuspec
4
5
SET UwpNuspec = %ROOT% \Build\UnitsNet.WindowsRuntimeComponent.nuspec
5
6
SET SerializationNuspec = %ROOT% \Build\UnitsNet.Serialization.JsonNet.nuspec
6
7
SET NuGetExe = %ROOT% \Tools\NuGet.exe
@@ -10,7 +11,12 @@ mkdir "%NuGetOutDir%"
10
11
11
12
%NuGetExe% pack %MainNuspec% -Verbosity detailed -OutputDirectory " %NuGetOutDir% " -BasePath " %ROOT% " -Symbols
12
13
if %errorlevel% neq 0 exit /b %errorlevel%
14
+
15
+ %NuGetExe% pack %MainSignedNuspec% -Verbosity detailed -OutputDirectory " %NuGetOutDir% " -BasePath " %ROOT% " -Symbols
16
+ if %errorlevel% neq 0 exit /b %errorlevel%
17
+
13
18
%NuGetExe% pack %UwpNuspec% -Verbosity detailed -OutputDirectory " %NuGetOutDir% " -BasePath " %ROOT% " -Symbols
14
19
if %errorlevel% neq 0 exit /b %errorlevel%
20
+
15
21
%NuGetExe% pack %SerializationNuspec% -Verbosity detailed -OutputDirectory " %NuGetOutDir% " -BasePath " %ROOT% " -Symbols
16
22
if %errorlevel% neq 0 exit /b %errorlevel%
You can’t perform that action at this time.
0 commit comments