Merge pull request #2684 from dotnet/pakrym/desktop-standalone

Fix desktop standalone scenario
This commit is contained in:
Pavel Krymets 2016-04-27 18:23:44 -07:00
commit 40b96398b8
6 changed files with 65 additions and 12 deletions

View file

@ -0,0 +1,11 @@
using System;
namespace DesktopAppWithRuntimes
{
public static class Program
{
public static void Main(string[] args)
{
}
}
}

View file

@ -0,0 +1,16 @@
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.NETCore.Windows.ApiSets": "1.0.1-rc2-*"
},
"compilationOptions": {
"emitEntryPoint": true
},
"frameworks": {
"net451": {}
},
"runtimes":
{
"win7-x64": {}
}
}