Skip to content

Commit

Permalink
Fix the strong name problem
Browse files Browse the repository at this point in the history
Strong name signing was being turned off.  Should have been on for the
deploy version
  • Loading branch information
jimsch committed Sep 11, 2017
1 parent 8565456 commit ec2cea0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
7 changes: 2 additions & 5 deletions CoAP.NET/CoAP.NET45.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -45,9 +45,6 @@
<DocumentationFile>bin\Deploy\NET45\CoAP.XML</DocumentationFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>coapnet.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
Expand Down Expand Up @@ -207,4 +204,4 @@
<Target Name="AfterBuild">
</Target>
-->
</Project>
</Project>
8 changes: 5 additions & 3 deletions coap.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Com.AugustCellars.CoAP</id>
<version>1.1.8</version>
<version>1.1.8.1</version>
<title>Com.AugustCellars.CoAP</title>
<authors>Jim Schaad</authors>
<owners>jimsch</owners>
<licenseUrl>https://github.com/jimsch/CoAP-CSharp/LICENSE</licenseUrl>
<projectUrl>https://github.com/jimsch/CoAP-CSharp</projectUrl>
<licenseUrl>https://github.com/Com-AugustCellars/CoAP-CSharp/LICENSE</licenseUrl>
<projectUrl>https://github.com/Com-AugustCellars/CoAP-CSharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Com.AugustCellars.CoAP is an implementation in C# providing CoAP-based services to .NET applications.</description>
<summary>.NET implementation of the Constrained Application Protocol (CoAP)</summary>
<releaseNotes>
This project is built on the CoAP.NET project of smeshlink which in turn is based on Californium. As this project did not seem to be maintained any more and I wanted a version in order to test the newer items that are coming out of the IETF CORE working group, I have captured it and started exanding it.
This project is NOT to be used for commercial purposes. It is intented only for research and verification work.

1.1.8.1
- Put the strong name back
1.1.8
- Rewrite the LinkFormat code - introduce a strict parsing mode and setup for doing a resource directory.

Expand Down

0 comments on commit ec2cea0

Please sign in to comment.