Verify coreclr absence/presence depending on app type during dotnet build.
This commit is contained in:
Bryan 2016-04-29 15:54:47 -07:00 committed by Bryan Thornbury
parent 4f1dbeba0e
commit a25e92208e
12 changed files with 167 additions and 3 deletions

View file

@ -0,0 +1,12 @@
using System;
namespace PortableApp
{
public static class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}