Migration: Do not add RIDs for Library projects (#5279)

* WIP

* Do not add runtime identifiers for libraries

* Reusing an existing test project

* Fix up tests
This commit is contained in:
Justin Goshi 2017-01-11 15:05:12 -10:00 committed by Piotr Puszkiewicz
parent 0bd6303f47
commit 03be0e56d4
10 changed files with 134 additions and 3 deletions

View file

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

View file

@ -0,0 +1,20 @@
{
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NetCore.App": {
"version": "1.0.3",
"type": "platform"
}
}
},
"net20": {},
"net35": {},
"net40": {},
"net461": {}
}
}