Skip to content

Commit

Permalink
Upgrade to the 1.0.0-beta6 DNX
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavien committed Aug 15, 2015
1 parent 4143882 commit 6b9d084
Show file tree
Hide file tree
Showing 13 changed files with 2,796 additions and 2,472 deletions.
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"projects": [ "src" ],
"sdk": {
"version": "1.0.0-beta5",
"runtime": "clr",
"version": "1.0.0-beta6",
"runtime": "coreclr",
"architecture": "x86"
}
}
275 changes: 139 additions & 136 deletions src/OpenChain.Abstractions/project.lock.json

Large diffs are not rendered by default.

874 changes: 440 additions & 434 deletions src/OpenChain.Ledger.Blockchain/project.lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/OpenChain.Ledger/LedgerPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ public static LedgerPath Parse(string path)
throw new ArgumentOutOfRangeException(nameof(path));
}

public static LedgerPath FromSegments(string[] segments)
public static LedgerPath FromSegments(params string[] segments)
{
if (segments == null || segments.Any(segment => !IsValidPathSegment(segment) || segment == string.Empty))
throw new ArgumentOutOfRangeException(nameof(segments));

return new LedgerPath("/" + string.Join("/", segments) + "/", segments);
return new LedgerPath("/" + string.Join("/", segments.Select(segment => segment + "/")), segments);
}

public static bool IsValidPathSegment(string path)
Expand Down
323 changes: 163 additions & 160 deletions src/OpenChain.Ledger/project.lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/OpenChain.Server/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"web": {
"commandName": "web",
"sdkVersion": "dnx-coreclr-win-x86.1.0.0-beta5"
"sdkVersion": "dnx-coreclr-win-x86.1.0.0-beta6"
}
}
}
1 change: 0 additions & 1 deletion src/OpenChain.Server/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"Microsoft.AspNet.Hosting": "1.0.0-beta6",
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta6",
"Microsoft.AspNet.WebSockets.Server": "1.0.0-beta6",
"Microsoft.AspNet.WebSockets.Client": "1.0.0-beta6",
"Microsoft.Framework.Logging.Console": "1.0.0-beta6",
"Microsoft.Framework.Configuration.Json": "1.0.0-beta6",
"Microsoft.Net.Http.Client": "1.0.0-beta6-10079",
Expand Down
1,250 changes: 616 additions & 634 deletions src/OpenChain.Server/project.lock.json

Large diffs are not rendered by default.

Loading

0 comments on commit 6b9d084

Please sign in to comment.