Ensure Microsoft.CSharp reference is not duplicated

This commit is contained in:
Troy Dai 2016-02-26 10:54:17 -08:00
parent 14e8b184bd
commit 268dd603cc
4 changed files with 53 additions and 9 deletions

View file

@ -0,0 +1,10 @@
namespace TestMicrosoftCSharpReference
{
public class Program
{
public static int Main(string[] args)
{
return 0;
}
}
}

View file

@ -0,0 +1,16 @@
{
"version": "1.0.0",
"dependencies": { },
"frameworks": {
"dnxcore50": {
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811"
}
},
"dnx451": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-*"
}
}
}
}