Added required packages for K

This commit is contained in:
David Fowler 2014-03-07 02:46:45 -08:00
parent 6ea8d7721b
commit 10c10ab2e7
3 changed files with 23 additions and 1 deletions

View File

@ -5,7 +5,9 @@ using Microsoft.AspNet.Razor.Generator;
using Microsoft.AspNet.Razor.Generator.Compiler;
using Microsoft.AspNet.Razor.Generator.Compiler.CSharp;
using Microsoft.AspNet.Razor.Parser;
#if NET45
using Microsoft.CSharp;
#endif
namespace Microsoft.AspNet.Razor
{

View File

@ -1,7 +1,9 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System.CodeDom;
#if NET45
using System.Diagnostics.Contracts;
#endif
using Microsoft.AspNet.Razor.Generator.Compiler;
using Microsoft.AspNet.Razor.Parser.SyntaxTree;

View File

@ -2,6 +2,24 @@
"version": "0.1-alpha-*",
"configurations": {
"net45": {},
"k10": {}
"k10": {
"dependencies": {
"System.Collections": "4.0.0.0",
"System.Diagnostics.Debug": "4.0.10.0",
"System.Diagnostics.Tools": "4.0.0.0",
"System.Globalization": "4.0.10.0",
"System.IO": "4.0.0.0",
"System.IO.FileSystem": "4.0.0.0",
"System.Linq": "4.0.0.0",
"System.Reflection": "4.0.10.0",
"System.Resources.ResourceManager": "4.0.0.0",
"System.Runtime": "4.0.20.0",
"System.Runtime.Extensions": "4.0.10.0",
"System.Runtime.InteropServices": "4.0.10.0",
"System.Threading": "4.0.0.0",
"System.Threading.Tasks": "4.0.0.0",
"System.Threading.Thread": "4.0.0.0"
}
}
}
}