Add Portable Test Package Asset

This commit is contained in:
Bryan Thornbury 2016-03-17 11:43:01 -07:00
parent ae83a73e35
commit 51dcb6063f
5 changed files with 36 additions and 5 deletions

View file

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

View file

@ -0,0 +1,18 @@
{
"version": "1.0.0",
"compilationOptions": {
"emitEntryPoint": true
},
"frameworks": {
"netstandard1.5": {
"imports": [
"dnxcore50",
"portable-net45+win8"
],
"dependencies": {
"Microsoft.NETCore.App": "1.0.0-rc2-23911"
}
}
}
}