Skip to content

Commit

Permalink
Merge pull request #4 from SiroccoHub/develop
Browse files Browse the repository at this point in the history
Merge pull request #3 from SiroccoHub/master
  • Loading branch information
arichika committed May 24, 2016
2 parents fa3b913 + 4a6b233 commit 4a36b00
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion samples/SampleWebApp.NetCore/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc2-final",
"JwtCore": "1.0.0-*"
"JwtCore": "1.0.2-*"
},

"tools": {
Expand Down
2 changes: 1 addition & 1 deletion samples/SampleWebApp.NetFramework/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"userSecretsId": "aspnet-AspNetCoreWebAppNetFramework-95211b09-bb53-48ae-9f0e-62bb09ee18d5",

"dependencies": {
"JwtCore": "1.0.1.0",
"JwtCore": "1.0.2-*",
"Microsoft.AspNetCore.Authentication.Cookies": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Diagnostics": "1.0.0-rc2-final",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0-rc2-final",
Expand Down
3 changes: 2 additions & 1 deletion src/JwtCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down
25 changes: 13 additions & 12 deletions src/JwtCore/project.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"title": "JwtCore",
"copyright": "Public Domain",
"version": "1.0.1.0",

"version": "1.0.2.0",
"description": "JwtCore is a JWT / JWS Implementation for .NET Core",
"authors": [ "@arichika (arichika.taniguchi)" ],
"packOptions": {
Expand All @@ -14,22 +13,24 @@
"url": "https://github.com/SiroccoHub/JwtCore.git"
}
},

"dependencies": {
"Microsoft.CSharp": "4.0.0",
"NETStandard.Library": "1.5.0-rc2-*",
"Newtonsoft.Json": "8.0.*",
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-*"
},

"frameworks": {
"netstandard1.3": {
"imports": [
"dnxcore50",
"dnx451",
"dnxcore50"
]
],
"dependencies": {
"Microsoft.CSharp": "4.0.1-rc2-24027",
"Newtonsoft.Json": "8.0.4-beta1",
"NETStandard.Library": "1.5.0-rc2-*",
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027"
}
},
"net4.6": {}
"net4.6": {
"dependencies": {
"Newtonsoft.Json": "8.0.4-beta1"
}
}
}
}
2 changes: 1 addition & 1 deletion tests/JwtCore.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"testRunner": "xunit",

"dependencies": {
"JwtCore": "1.0.0-*",
"JwtCore": "1.0.2-*",
"xunit": "2.1.0",
"dotnet-test-xunit": "1.0.0-rc2-*",
"FluentAssertions": "4.6.1"
Expand Down

0 comments on commit 4a36b00

Please sign in to comment.