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 Library
{
public class TestLib
{
public static void Test()
{
Console.WriteLine("Hello World!");
}
}
}

View file

@ -0,0 +1,16 @@
{
"version": "1.0.0-*",
"frameworks": {
"netstandard1.6": {
"dependencies": {
"NETStandard.Library": "1.6"
}
},
"netstandard1.3": {
"dependencies": {
"NETStandard.Library": "1.3"
}
},
"net451": {}
}
}