Skip to content
This repository has been archived by the owner on Oct 26, 2018. It is now read-only.

Commit

Permalink
Updating json files to pin versions and build.cmd to pin KoreBuild an…
Browse files Browse the repository at this point in the history
…d DNX
  • Loading branch information
pranavkm committed Nov 18, 2015
1 parent 90ed150 commit e20bf25
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 34 deletions.
9 changes: 7 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"projects": ["src"]
}
"projects": [
"src"
],
"sdk": {
"version": "1.0.0-rc1-final"
}
}
38 changes: 19 additions & 19 deletions src/Microsoft.Extensions.DiagnosticAdapter/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"version": "1.0.0-*",
"version": "1.0.0-rc1-final",
"description": "A DiagnosticListener implementation which provides duck-typing through generated proxy types.",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-*",
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final",
"System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516"
},
"compilationOptions": {
"define": [
Expand All @@ -22,22 +22,22 @@
},
"dotnet5.4": {
"dependencies": {
"System.ComponentModel": "4.0.1-beta-*",
"System.Collections.Concurrent": "4.0.11-beta-*",
"System.Collections": "4.0.11-beta-*",
"System.Diagnostics.Debug": "4.0.11-beta-*",
"System.Globalization": "4.0.11-beta-*",
"System.Linq": "4.0.1-beta-*",
"System.Linq.Expressions": "4.0.11-beta-*",
"System.Threading": "4.0.11-beta-*",
"System.Reflection": "4.0.11-beta-*",
"System.Reflection.Emit": "4.0.1-beta-*",
"System.Reflection.Emit.Lightweight": "4.0.1-beta-*",
"System.Reflection.Extensions": "4.0.1-beta-*",
"System.Reflection.TypeExtensions": "4.0.1-beta-*",
"System.Resources.ResourceManager": "4.0.1-beta-*",
"System.Runtime": "4.0.21-beta-*",
"System.Runtime.Extensions": "4.0.11-beta-*"
"System.ComponentModel": "4.0.1-beta-23516",
"System.Collections.Concurrent": "4.0.11-beta-23516",
"System.Collections": "4.0.11-beta-23516",
"System.Diagnostics.Debug": "4.0.11-beta-23516",
"System.Globalization": "4.0.11-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Linq.Expressions": "4.0.11-beta-23516",
"System.Threading": "4.0.11-beta-23516",
"System.Reflection": "4.1.0-beta-23516",
"System.Reflection.Emit": "4.0.1-beta-23516",
"System.Reflection.Emit.Lightweight": "4.0.1-beta-23516",
"System.Reflection.Extensions": "4.0.1-beta-23516",
"System.Reflection.TypeExtensions": "4.1.0-beta-23516",
"System.Resources.ResourceManager": "4.0.1-beta-23516",
"System.Runtime": "4.0.21-beta-23516",
"System.Runtime.Extensions": "4.0.11-beta-23516"
}
}
}
Expand Down
30 changes: 17 additions & 13 deletions test/Microsoft.Extensions.DiagnosticAdapter.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"dependencies": {
"Microsoft.AspNet.Testing": "1.0.0-*",
"Microsoft.Extensions.DiagnosticAdapter": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
"Microsoft.AspNet.Testing": "1.0.0-rc1-final",
"Microsoft.Extensions.DiagnosticAdapter": "1.0.0-rc1-final",
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final"
},
"compilationOptions": {"define": ["TEST"]},
"commands": {
"run": "xunit.runner.aspnet",
"test": "xunit.runner.aspnet"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
}
}
"compilationOptions": {
"define": [
"TEST"
]
},
"commands": {
"run": "xunit.runner.aspnet",
"test": "xunit.runner.aspnet"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
}
}

0 comments on commit e20bf25

Please sign in to comment.