diff --git a/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate b/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate index 666dee54e..88f99d13e 100644 --- a/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate +++ b/src/dotnet/commands/dotnet-new/CSharp_Console/project.json.pretemplate @@ -10,6 +10,8 @@ } }, "frameworks": { - "netcoreapp1.0": {} + "netcoreapp1.0": { + "imports": "dnxcore50" + } } } diff --git a/test/dotnet-new.Tests/GivenThatIWantANewCSApp.cs b/test/dotnet-new.Tests/GivenThatIWantANewCSApp.cs index c0ae53e5a..089e03208 100644 --- a/test/dotnet-new.Tests/GivenThatIWantANewCSApp.cs +++ b/test/dotnet-new.Tests/GivenThatIWantANewCSApp.cs @@ -67,4 +67,4 @@ namespace Microsoft.DotNet.Tests File.WriteAllText(projectJsonPath, projectJson + Environment.NewLine); } } -} \ No newline at end of file +} diff --git a/test/dotnet-new.Tests/project.json b/test/dotnet-new.Tests/project.json index ba9df8166..8cc41de4d 100644 --- a/test/dotnet-new.Tests/project.json +++ b/test/dotnet-new.Tests/project.json @@ -25,4 +25,4 @@ } }, "testRunner": "xunit" -} \ No newline at end of file +}