Deduplicate libraries

This commit is contained in:
Pavel Krymets 2016-05-03 09:08:57 -07:00
parent 4f1dbeba0e
commit eb32a40ea2
9 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1 @@
noautobuild

View file

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

View file

@ -0,0 +1,11 @@
{
"version": "1.0.0",
"dependencies": {
"TestLibrary": "1.0.0",
"System.IO.Compression": "4.1.0-rc2-24027"
},
"frameworks": {
"net461": {
}
}
}

View file

@ -0,0 +1 @@
noautobuild

View file

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

View file

@ -0,0 +1,10 @@
{
"version": "1.0.0",
"frameworks": {
"net461": {
"frameworkAssemblies": {
"System.IO.Compression": ""
}
}
}
}

View file

@ -0,0 +1 @@
{ }