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 28, 2015
1 parent 69199f2 commit 7456392
Show file tree
Hide file tree
Showing 55 changed files with 88,084 additions and 593 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
100 changes: 53 additions & 47 deletions src/EntityFramework.Commands/project.json
@@ -1,52 +1,58 @@
{
"version": "7.0.0-*",
"description": "Command line utilities for Entity Framework.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/entityframework"
},
"compilationOptions": {
"warningsAsErrors": true
},
"compile": "..\\Shared\\*.cs",
"exclude": "tools\\Handlers.cs",
"namedResource": {
"EntityFramework.Commands.Strings": "Properties/Strings.resx"
},
"frameworks": {
"net45": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-*"
}
"version": "7.0.0-beta6",
"description": "Command line utilities for Entity Framework.",
"repository": {
"type": "git",
"url": "git://github.com/aspnet/entityframework"
},
"dnx451": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-*",
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*"
}
"compilationOptions": {
"warningsAsErrors": true
},
"dnxcore50": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-*",
"Microsoft.AspNet.Hosting": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*",
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-*"
}
"compile": "..\\Shared\\*.cs",
"exclude": "tools\\Handlers.cs",
"namedResource": {
"EntityFramework.Commands.Strings": "Properties/Strings.resx"
},
"netcore50": {
"bin": {
"assembly": "lib\\netcore50\\_._"
},
"dependencies": {
"EntityFramework.Relational": "7.0.0-*"
}
"frameworks": {
"net45": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta6"
}
},
"dnx451": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta6",
"Microsoft.AspNet.Hosting": "1.0.0-beta6",
"Microsoft.Framework.CommandLineUtils.Sources": {
"version": "1.0.0-beta6",
"type": "build"
},
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6",
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6"
}
},
"dnxcore50": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta6",
"Microsoft.AspNet.Hosting": "1.0.0-beta6",
"Microsoft.Framework.CommandLineUtils.Sources": {
"version": "1.0.0-beta6",
"type": "build"
},
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6",
"Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6"
}
},
"netcore50": {
"bin": {
"assembly": "lib\\netcore50\\_._"
},
"dependencies": {
"EntityFramework.Relational": "7.0.0-beta6"
}
}
},
"commands": {
"ef": "EntityFramework.Commands"
}
},
"commands": {
"ef": "EntityFramework.Commands"
}
}
}

0 comments on commit 7456392

Please sign in to comment.