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 Oct 16, 2015
1 parent dadaf9b commit 90de24e
Show file tree
Hide file tree
Showing 63 changed files with 282,576 additions and 767 deletions.
6 changes: 3 additions & 3 deletions build.cmd
Expand Up @@ -2,10 +2,10 @@
cd %~dp0

SETLOCAL
SET NUGET_VERSION=latest
SET NUGET_VERSION=v3.2.0
SET CACHED_NUGET=%LocalAppData%\NuGet\nuget.%NUGET_VERSION%.exe
SET BUILDCMD_KOREBUILD_VERSION=""
SET BUILDCMD_DNX_VERSION=""
SET BUILDCMD_KOREBUILD_VERSION=0.2.1-beta8
SET BUILDCMD_DNX_VERSION=1.0.0-beta8

IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
Expand Down
113 changes: 61 additions & 52 deletions src/EntityFramework.Commands/project.json
@@ -1,57 +1,66 @@
{
"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",
"namedResource": {
"EntityFramework.Commands.CommandsStrings": "Properties/CommandsStrings.resx"
},
"dependencies": {
"EntityFramework.Relational": "7.0.0-*",
"Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-*"
},
"frameworks": {
"net45": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-*"
}
"version": "7.0.0-beta8",
"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.Dnx.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.Dnx.Runtime.Abstractions": "1.0.0-*"
}
"compile": "..\\Shared\\*.cs",
"namedResource": {
"EntityFramework.Commands.CommandsStrings": "Properties/CommandsStrings.resx"
},
"uap10.0": {
"bin": {
"assembly": "lib\\uap10.0\\_._"
}
"dependencies": {
"EntityFramework.Relational": "7.0.0-beta8",
"Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02"
},
"frameworks": {
"net45": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta8"
}
},
"dnx451": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta8",
"Microsoft.AspNet.Hosting": "1.0.0-beta8",
"Microsoft.Framework.CommandLineUtils.Sources": {
"version": "1.0.0-beta8",
"type": "build"
},
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8",
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8"
}
},
"dnxcore50": {
"dependencies": {
"EntityFramework.Relational.Design": "7.0.0-beta8",
"Microsoft.AspNet.Hosting": "1.0.0-beta8",
"Microsoft.Framework.CommandLineUtils.Sources": {
"version": "1.0.0-beta8",
"type": "build"
},
"Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8",
"Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8"
}
},
"uap10.0": {
"bin": {
"assembly": "lib\\uap10.0\\_._"
}
}
},
"packInclude": {
"build/": "build/**",
"lib/": "lib/**",
"tools/": [
"tools/**",
"Design\\OperationHandlers.cs"
]
},
"commands": {
"ef": "EntityFramework.Commands"
}
},
"packInclude": {
"build/": "build/**",
"lib/": "lib/**",
"tools/": [ "tools/**", "Design\\OperationHandlers.cs" ]
},
"commands": {
"ef": "EntityFramework.Commands"
}
}
}

0 comments on commit 90de24e

Please sign in to comment.