Skip to content

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 Jul 10, 2015
1 parent 8f8ffd3 commit d32db2a
Show file tree
Hide file tree
Showing 27 changed files with 21,994 additions and 65 deletions.
12 changes: 10 additions & 2 deletions build.cmd
Expand Up @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul

:restore
IF EXIST packages\KoreBuild goto run
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
IF DEFINED BUILDCMD_RELEASE (
.nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre
) ELSE (
.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre
)
.nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion

IF "%SKIP_DNX_INSTALL%"=="1" goto run
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
IF DEFINED BUILDCMD_RELEASE (
CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default
) ELSE (
CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86
)
CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86

:run
Expand Down
26 changes: 13 additions & 13 deletions src/Microsoft.Framework.CodeGeneration.Core/project.json
@@ -1,24 +1,24 @@
{
"version": "1.0.0-*",
"version": "1.0.0-beta5",
"dependencies": {
"Microsoft.Framework.CodeGeneration.Sources": { "version": "1.0.0-*", "type": "build" },
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*",
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-*",
"Microsoft.Framework.Runtime.Roslyn": "1.0.0-*",
"Microsoft.Framework.CodeGeneration.Templating": "1.0.0-*",
"Microsoft.Framework.CodeGeneration.Sources": { "version": "1.0.0-beta5", "type": "build" },
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5",
"Microsoft.Framework.DependencyInjection": "1.0.0-beta5",
"Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5",
"Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta5",
"Microsoft.Framework.CodeGeneration.Templating": "1.0.0-beta5",
"Newtonsoft.Json": "6.0.6"
},
"frameworks": {
"dnx451": { },
"dnxcore50": {
"dependencies": {
"System.Runtime": "4.0.20-beta-*",
"System.Reflection.Extensions": "4.0.0-beta-*",
"System.Diagnostics.Process": "4.0.0-beta-*",
"System.Collections": "4.0.10-beta-*",
"System.Console": "4.0.0-beta-*",
"System.Diagnostics.Contracts": "4.0.0-beta-*"
"System.Runtime": "4.0.20-beta-23019",
"System.Reflection.Extensions": "4.0.0-beta-23019",
"System.Diagnostics.Process": "4.0.0-beta-23019",
"System.Collections": "4.0.10-beta-23019",
"System.Console": "4.0.0-beta-23019",
"System.Diagnostics.Contracts": "4.0.0-beta-23019"
}
}
}
Expand Down

0 comments on commit d32db2a

Please sign in to comment.