-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating json files to pin versions and build.cmd to pin KoreBuild an…
…d DNX
- Loading branch information
Showing
14 changed files
with
242 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
{ | ||
"projects": ["src", "test/TestApps"] | ||
} | ||
"projects": [ | ||
"src", | ||
"test/TestApps" | ||
], | ||
"sdk": { | ||
"version": "1.0.0-rc1-final" | ||
} | ||
} |
54 changes: 27 additions & 27 deletions
54
src/Microsoft.Extensions.CodeGeneration.Core/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
"version": "1.0.0-rc1-final", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", | ||
"Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", | ||
"Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { | ||
"version": "1.0.0-*", | ||
"type": "build" | ||
}, | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { | ||
"version": "1.0.0-*", | ||
"type": "build" | ||
}, | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-*", | ||
"Newtonsoft.Json": "6.0.6" | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
}, | ||
"frameworks": { | ||
"dnx451": { }, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Console": "4.0.0-beta-*", | ||
"System.Diagnostics.Process": "4.0.0-beta-*" | ||
} | ||
} | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", | ||
"Newtonsoft.Json": "6.0.6" | ||
}, | ||
"frameworks": { | ||
"dnx451": {}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Console": "4.0.0-beta-23516", | ||
"System.Diagnostics.Process": "4.1.0-beta-23516" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 14 additions & 14 deletions
28
src/Microsoft.Extensions.CodeGeneration.Sources/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"shared": "*.cs", | ||
"frameworks": { | ||
"dnx451": { }, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.IO": "4.0.11-beta-*", | ||
"System.Linq": "4.0.1-beta-*", | ||
"System.Reflection": "4.0.11-beta-*", | ||
"System.Runtime": "4.0.21-beta-*", | ||
"System.Diagnostics.Contracts": "4.0.1-beta-*" | ||
} | ||
} | ||
"version": "1.0.0-rc1-final", | ||
"shared": "*.cs", | ||
"frameworks": { | ||
"dnx451": {}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.IO": "4.0.11-beta-23516", | ||
"System.Linq": "4.0.1-beta-23516", | ||
"System.Reflection": "4.1.0-beta-23516", | ||
"System.Runtime": "4.0.21-beta-23516", | ||
"System.Diagnostics.Contracts": "4.0.1-beta-23516" | ||
} | ||
} | ||
} | ||
} | ||
} |
56 changes: 29 additions & 27 deletions
56
src/Microsoft.Extensions.CodeGeneration.Templating/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
"version": "1.0.0-rc1-final", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration.Sources": { "version": "1.0.0-*", "type": "build" }, | ||
"Microsoft.AspNet.Razor": "4.0.0-*", | ||
"Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-*" | ||
"Microsoft.AspNet.Razor": "4.0.0-rc1-final", | ||
"Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-rc1-final" | ||
}, | ||
"frameworks": { | ||
"dnx451": { | ||
"frameworkAssemblies": { | ||
"System.Runtime": "", | ||
"System.IO": "4.0.0.0", | ||
"System.Text.Encoding": "4.0.0.0", | ||
"System.Threading.Tasks": "4.0.0.0" | ||
} | ||
}, | ||
|
||
"frameworks": { | ||
"dnx451": { | ||
"frameworkAssemblies": { | ||
"System.Runtime": "", | ||
"System.IO": "4.0.0.0", | ||
"System.Text.Encoding": "4.0.0.0", | ||
"System.Threading.Tasks": "4.0.0.0" | ||
} | ||
}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.IO": "4.0.11-beta-*", | ||
"System.Dynamic.Runtime": "4.0.11-beta-*", | ||
"System.Collections.Concurrent": "4.0.11-beta-*", | ||
"System.Reflection.TypeExtensions": "4.0.1-beta-*" | ||
} | ||
} | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.IO": "4.0.11-beta-23516", | ||
"System.Dynamic.Runtime": "4.0.11-beta-23516", | ||
"System.Collections.Concurrent": "4.0.11-beta-23516", | ||
"System.Reflection.TypeExtensions": "4.1.0-beta-23516" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"keyFile": "../../tools/Key.snk" | ||
"version": "1.0.0-rc1-final", | ||
"compilationOptions": { | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { "version": "1.0.0-*", "type": "build" }, | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-*", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" } | ||
}, | ||
"frameworks": { | ||
"dnx451": { }, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Console": "4.0.0-beta-*" | ||
} | ||
} | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CommandLineUtils.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
} | ||
}, | ||
"frameworks": { | ||
"dnx451": {}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Console": "4.0.0-beta-23516" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
"version": "1.0.0-rc1-final", | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { | ||
"version": "1.0.0-rc1-final", | ||
"type": "build" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Sources": { "version": "1.0.0-*", "type": "build" }, | ||
"Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-*", | ||
"Newtonsoft.Json": "6.0.6" | ||
}, | ||
"frameworks": { | ||
"dnx451": { }, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Runtime": "4.0.21-beta-*" | ||
} | ||
} | ||
}, | ||
"packInclude": { | ||
"/": "THIRDPARTYNOTICE ASP.NET_Preview.rtf", | ||
"Templates/": "Templates/" | ||
"Microsoft.Extensions.CodeGeneration.EntityFramework": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Templating": "1.0.0-rc1-final", | ||
"Newtonsoft.Json": "6.0.6" | ||
}, | ||
"frameworks": { | ||
"dnx451": {}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Runtime": "4.0.21-beta-23516" | ||
} | ||
} | ||
} | ||
}, | ||
"packInclude": { | ||
"/": "THIRDPARTYNOTICE ASP.NET_Preview.rtf", | ||
"Templates/": "Templates/" | ||
} | ||
} |
46 changes: 22 additions & 24 deletions
46
test/Microsoft.Extensions.CodeGeneration.Core.FunctionalTest/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
{ | ||
"dependencies": { | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-*", | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-*", | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-*", | ||
"Microsoft.AspNet.Hosting": "1.0.0-*", | ||
"ModelTypesLocatorTestWebApp": "1.0.0", | ||
"xunit.runner.aspnet": "2.0.0-aspnet-*" | ||
"dependencies": { | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-rc1-final", | ||
"Microsoft.AspNet.Hosting": "1.0.0-rc1-final", | ||
"ModelTypesLocatorTestWebApp": "1.0.0", | ||
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final" | ||
}, | ||
"commands": { | ||
"test": "xunit.runner.aspnet" | ||
}, | ||
"frameworks": { | ||
"dnx451": { | ||
"dependencies": { | ||
"Moq": "4.2.1312.1622" | ||
} | ||
}, | ||
|
||
"commands": { | ||
"test": "xunit.runner.aspnet" | ||
}, | ||
|
||
"frameworks": { | ||
"dnx451": { | ||
"dependencies": { | ||
"Moq": "4.2.1312.1622" | ||
} | ||
}, | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Runtime": "4.0.21-beta-*" | ||
} | ||
} | ||
"dnxcore50": { | ||
"dependencies": { | ||
"System.Runtime": "4.0.21-beta-23516" | ||
} | ||
} | ||
} | ||
} | ||
} |
32 changes: 16 additions & 16 deletions
32
test/Microsoft.Extensions.CodeGeneration.Core.Test/project.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
{ | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-*", | ||
"Moq": "4.2.1312.1622", | ||
"xunit.runner.aspnet": "2.0.0-aspnet-*" | ||
}, | ||
"commands": { | ||
"test": "xunit.runner.aspnet" | ||
}, | ||
"frameworks": { | ||
"dnx451": { } | ||
} | ||
} | ||
"compilationOptions": { | ||
"warningsAsErrors": true, | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"dependencies": { | ||
"Microsoft.Extensions.CodeGeneration.Core": "1.0.0-rc1-final", | ||
"Moq": "4.2.1312.1622", | ||
"xunit.runner.aspnet": "2.0.0-aspnet-rc1-final" | ||
}, | ||
"commands": { | ||
"test": "xunit.runner.aspnet" | ||
}, | ||
"frameworks": { | ||
"dnx451": {} | ||
} | ||
} |
Oops, something went wrong.