Merge pull request #2930 from eerhardt/MvcNet46

dotnet build raises errors MVC apps target net46.
This commit is contained in:
Eric Erhardt 2016-05-06 17:12:25 -05:00
commit a76fea647e
5 changed files with 49 additions and 6 deletions

View file

@ -0,0 +1 @@
noautobuild

View file

@ -0,0 +1,10 @@
namespace AppWithNet46AndRoslyn
{
public class MyApp
{
public static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}
}

View file

@ -0,0 +1,11 @@
{
"buildOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01"
},
"frameworks": {
"net46": { }
}
}