Skip to content

Commit c9c579a

Browse files
committed
added nuspec to folder path
1 parent 07884ad commit c9c579a

2 files changed

Lines changed: 34 additions & 2 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>AustinHarris.JsonRpc</id>
5+
<version>$version$</version>
6+
<title>JSON-RPC.NET Core</title>
7+
<authors>Austin Harris</authors>
8+
<owners />
9+
<licenseUrl>http://jsonrpc2.codeplex.com/license</licenseUrl>
10+
<projectUrl>http://jsonrpc2.codeplex.com/</projectUrl>
11+
<iconUrl>http://download-codeplex.sec.s-msft.com/Download?ProjectName=jsonrpc2&amp;DownloadId=487107</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Core functionality for JsonRpc.Net</description>
14+
<summary>JSON-RPC.Net is a high performance Json-Rpc 2.0 server, leveraging the popular JSON.NET library. Host in ASP.NET, also supports sockets and pipes, oh my!</summary>
15+
<releaseNotes>Can now set the exception of a JsonRpcMethod from within the method using JsonRpcContext.SetException().
16+
Can now use Config.SetPreProcessHandler to setup a method that is called prior to each JsonRpcMethod invocation, useful for logging or authentication.</releaseNotes>
17+
<language>en-US</language>
18+
<tags>Json Rpc Json-Rpc.Net Json-Rpc JsonRpc Json.net</tags>
19+
<dependencies>
20+
<group targetFramework=".NETFramework4.0">
21+
<dependency id="Newtonsoft.Json" version="4.5.1" />
22+
</group>
23+
</dependencies>
24+
<frameworkAssemblies>
25+
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.0" />
26+
</frameworkAssemblies>
27+
</metadata>
28+
<files>
29+
<file src="bin\Release\AustinHarris.JsonRpc.dll" />
30+
<file src="bin\Release\AustinHarris.JsonRpc.pdb" />
31+
</files>
32+
</package>

Json-Rpc/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("1.0.3.0")]
33-
[assembly: AssemblyFileVersion("1.0.3.0")]
32+
[assembly: AssemblyVersion("1.0.5.0")]
33+
[assembly: AssemblyFileVersion("1.0.5.0")]

0 commit comments

Comments
 (0)