Skip to content

Commit

Permalink
Upgrade to .NET Core 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavien committed Nov 27, 2016
1 parent 2c1eeec commit ce097e0
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"projects": [ "src" ],
"sdk": {
"version": "1.0.0-preview2-003121",
"version": "1.0.0-preview2-1-003177",
"architecture": "x64",
"runtime": "coreclr"
}
Expand Down
8 changes: 4 additions & 4 deletions src/Openchain.Abstractions/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@

"netstandard1.3": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Linq": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0"
"System.Collections": "4.3.0",
"System.Linq": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0"
}
},

Expand Down
8 changes: 4 additions & 4 deletions src/Openchain.Anchoring.Blockchain/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
},

"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.0.0",
"NBitcoin": "3.0.0.43",
"Microsoft.Extensions.Logging.Abstractions": "1.1.*",
"NBitcoin": "3.0.0.76",
"Openchain.Infrastructure": "0.6.3"
},

"frameworks": {
"netstandard1.6": {
"netstandard1.3": {
"dependencies": {
"System.Net.Http": "4.1.0"
"System.Net.Http": "4.3.0"
},
"imports": [
"dotnet5.6",
Expand Down
14 changes: 7 additions & 7 deletions src/Openchain.Infrastructure/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
},

"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
"Microsoft.Extensions.Configuration.Abstractions": "1.1.*",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.*",
"Openchain.Abstractions": "0.6.3",
"Portable.BouncyCastle": "1.8.1.1"
},

"frameworks": {
"netstandard1.3": {
"dependencies": {
"System.Dynamic.Runtime": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Runtime.Numerics": "4.0.1",
"System.Text.Encoding": "4.0.11",
"System.Text.RegularExpressions": "4.1.0"
"System.Dynamic.Runtime": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.RegularExpressions": "4.3.0"
}
},

Expand Down
20 changes: 10 additions & 10 deletions src/Openchain.Server/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@
},

"dependencies": {
"Microsoft.AspNetCore.Mvc.Cors": "1.0.0",
"Microsoft.AspNetCore.Mvc.Core": "1.0.0",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
"Microsoft.AspNetCore.Mvc.Cors": "1.1.*",
"Microsoft.AspNetCore.Mvc.Core": "1.1.*",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.*",
"Microsoft.AspNetCore.Server.Kestrel": "1.1.*",
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0",
"Microsoft.Extensions.Logging.Console": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
"Microsoft.Extensions.Logging.Console": "1.1.*",
"Microsoft.Extensions.Configuration.Json": "1.1.*",
"Microsoft.Extensions.Configuration.UserSecrets": "1.1.*",
"Newtonsoft.Json": "9.0.1",
"Openchain.Infrastructure": "0.6.3"
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"System.Net.WebSockets.Client": "4.0.0",
"System.Text.Encoding": "4.0.11"
"System.Net.WebSockets.Client": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},

Expand Down
4 changes: 2 additions & 2 deletions src/Openchain.SqlServer/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"frameworks": {
"netstandard1.3": {
"dependencies": {
"System.Data.Common": "4.1.0",
"System.Data.SqlClient": "4.1.0"
"System.Data.Common": "4.3.0",
"System.Data.SqlClient": "4.3.0"
}
},

Expand Down
4 changes: 2 additions & 2 deletions src/Openchain.Sqlite/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
},

"dependencies": {
"Microsoft.Data.SQLite": "1.0.0",
"Microsoft.AspNetCore.Hosting": "1.0.0",
"Microsoft.Data.SQLite": "1.1.*",
"Microsoft.AspNetCore.Hosting": "1.1.*",
"Openchain.Infrastructure": "0.6.3"
},

Expand Down
6 changes: 3 additions & 3 deletions src/Openchain/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0",
"version": "1.1.0",
"type": "platform"
},
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.*",
"Openchain.Server": "0.6.3",

"Openchain.Anchoring.Blockchain": "0.6.3",
Expand All @@ -19,7 +19,7 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"imports": [
"dotnet5.6",
"dnxcore50",
Expand Down
4 changes: 2 additions & 2 deletions test/Openchain.Abstractions.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"version": "1.1.0"
}
},
"imports": [ "dnxcore50", "portable-net45+win8" ]
Expand Down
4 changes: 2 additions & 2 deletions test/Openchain.Infrastructure.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"version": "1.1.0"
}
},
"imports": [ "dnxcore50", "portable-net45+win8" ]
Expand Down
10 changes: 5 additions & 5 deletions test/Openchain.SqlServer.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
},

"dependencies": {
"Microsoft.Extensions.Configuration": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"Microsoft.Extensions.DependencyInjection": "1.0.0",
"Microsoft.Extensions.Configuration": "1.1.*",
"Microsoft.Extensions.Configuration.Json": "1.1.*",
"Microsoft.Extensions.DependencyInjection": "1.1.*",
"Openchain.Abstractions.Tests": "0.6.3",
"Openchain.Infrastructure.Tests": "0.6.3",
"Openchain.SqlServer": "0.6.3",
Expand All @@ -35,11 +35,11 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"version": "1.1.0"
}
},
"imports": [ "dnxcore50", "portable-net45+win8" ]
Expand Down
6 changes: 3 additions & 3 deletions test/Openchain.Sqlite.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},

"dependencies": {
"Microsoft.Extensions.DependencyInjection": "1.0.0",
"Microsoft.Extensions.DependencyInjection": "1.1.*",
"Openchain.Abstractions.Tests": "0.6.3",
"Openchain.Infrastructure.Tests": "0.6.3",
"Openchain.Sqlite": "0.6.3",
Expand All @@ -27,11 +27,11 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"version": "1.1.0"
}
},
"imports": [ "dnxcore50", "portable-net45+win8" ]
Expand Down
4 changes: 2 additions & 2 deletions test/Openchain.Validation.PermissionBased.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
},

"frameworks": {
"netcoreapp1.0": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
"version": "1.1.0"
}
},
"imports": [ "dnxcore50", "portable-net45+win8" ]
Expand Down

0 comments on commit ce097e0

Please sign in to comment.