Update dependencies after rename to Microsoft.Dnx.Compilation.CSharp
This commit is contained in:
parent
b8f930bb4c
commit
51693304c1
|
|
@ -2,6 +2,8 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v2" />
|
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/api/v2" />
|
||||||
|
<add key="Roslyn" value="https://www.myget.org/F/roslyn-nightly" />
|
||||||
|
<add key="DotNet" value="https://www.myget.org/F/dotnet-corefx" />
|
||||||
<add key="NuGet" value="https://nuget.org/api/v2/" />
|
<add key="NuGet" value="https://nuget.org/api/v2/" />
|
||||||
</packageSources>
|
</packageSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
using Microsoft.Framework.Runtime.Roslyn;
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using Microsoft.Dnx.Compilation.CSharp;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Server.Kestrel.GeneratedCode
|
namespace Microsoft.AspNet.Server.Kestrel.GeneratedCode
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
"licenseUrl": "",
|
"licenseUrl": "",
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta6-*"
|
"Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-*"
|
||||||
},
|
},
|
||||||
|
|
||||||
"commands": {
|
"commands": {
|
||||||
|
|
@ -17,7 +17,9 @@
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": {
|
"dnx451": {
|
||||||
"frameworkAssemblies": {
|
"frameworkAssemblies": {
|
||||||
"System.Runtime": "4.0.10.0"
|
"System.Runtime": "4.0.10.0",
|
||||||
|
"System.Text.Encoding": "4.0.0.0",
|
||||||
|
"System.Threading.Tasks": "4.0.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue