Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
These changes should hopefully work after a potential MSBuild issue involving assembly signing is resolved, but for now, the assembly had to be "manually" signed by directly running "sn"
  • Loading branch information
peteroupc committed Sep 8, 2017
1 parent 1062eed commit 4ab287c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
29 changes: 28 additions & 1 deletion Numbers/Numbers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Company>Peter Occil</Company>
<Description>A C# library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</Description>
<Copyright>Written by Peter O. in 2017. Any copyright is released to the Public Domain.</Copyright>
Expand All @@ -14,6 +14,9 @@
<PackageLicenseUrl>http://creativecommons.org/publicdomain/zero/1.0/</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/peteroupc/Numbers</PackageProjectUrl>
<PackageReleaseNotes>
Version 1.0.1

- Really strong-name sign the assembly, which (probably) was inadvertently delay-signed in version 1.0.

Version 1.0

Expand All @@ -28,14 +31,38 @@ Version 0.5
</PackageReleaseNotes>
<PackageTags>numbers arithmetic decimal math</PackageTags>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>PeterO.snk</AssemblyOriginatorKeyFile>
<Title>Arbitrary-Precision Arithmetic Library</Title>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\netstandard1.0\Numbers.xml</DocumentationFile>
<CustomCommands>
<CustomCommands>
<Command>
<type>Custom</type>
<name>Signing Workaround</name>
<command>sn -R bin/Debug/netstandard1.0/Numbers.dll PeterO.snk</command>
<workingdir>${ProjectDir}</workingdir>
<externalConsole>True</externalConsole>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType></DebugType>
<DocumentationFile>bin\Release\netstandard1.0\Numbers.xml</DocumentationFile>
<CustomCommands>
<CustomCommands>
<Command>
<type>Custom</type>
<name>Signing Workaround</name>
<command>sn -R bin/Release/netstandard1.0/Numbers.dll PeterO.snk</command>
<workingdir>${ProjectDir}</workingdir>
<externalConsole>True</externalConsole>
</Command>
</CustomCommands>
</CustomCommands>
</PropertyGroup>
</Project>
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ at: [http://peteroupc.github.io/Numbers/](http://peteroupc.github.io/Numbers/)
Release notes
-------

Version 1.0.1

- Really strong-name sign the assembly, which (probably) was inadvertently delay-signed in version 1.0.

Version 1.0

- Filled out documentation so that there are no more undocumented parts
Expand Down
2 changes: 1 addition & 1 deletion Test/Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,5 @@
<Name>Numbers</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

0 comments on commit 4ab287c

Please sign in to comment.