Integrate ProjectModel server tests

This commit is contained in:
Troy Dai 2016-02-17 16:49:34 -08:00
parent b5de686ba4
commit f7e4714dc5
20 changed files with 28 additions and 29 deletions

View file

@ -0,0 +1,3 @@
{
"projects": ["src"]
}

View file

@ -0,0 +1,9 @@
{
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811",
"EmptyLibrary": "1.0.0-*"
},
"frameworks": {
"dnxcore50": { }
}
}

View file

@ -0,0 +1,13 @@
using System;
namespace Misc.DthTestProjects.EmptyConsoleApp
{
public class Program
{
public int Main(string[] args)
{
Console.WriteLine("Hello, world.");
return 0;
}
}
}

View file

@ -0,0 +1,11 @@
{
"dependencies": { },
"frameworks": {
"dnxcore50": {
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811"
}
},
"dnx451": { }
}
}

View file

@ -0,0 +1,8 @@
using System;
namespace Misc.DthTestProjects.EmptyLibrary
{
public class Class
{
}
}

View file

@ -0,0 +1,11 @@
{
"dependencies": { },
"frameworks": {
"dnxcore50": {
"dependencies":{
"System.Runtime": "4.0.21-beta-*",
"System.Console": "4.0.0-beta-*"
}
}
}
}

View file

@ -0,0 +1,11 @@
{
"version": "1.0.0-*",
"dependencies": { },
"frameworks": {
"dnxcore50": {
"dependencies":{
"System.Runtime": "4.0.21-*"
}
}
}
}

View file

@ -0,0 +1,14 @@
namespace FailReleaseProject
{
public class Program
{
public int Main(string[] args)
{
#if RELEASE
// fail the compilation under Release configuration
i
#endif
return 0;
}
}
}

View file

@ -0,0 +1,10 @@
{
"frameworks": {
"dnxcore50": {
"dependencies": {
"System.Runtime": "4.0.21-*"
}
}
},
"dependencies": { }
}

View file

@ -0,0 +1,11 @@
{
"dependencies": {
"NETStandard.Library": "1.0.0-rc2-23811",
"Microsoft.Web.Administration": "7.0.0"
},
"frameworks": {
"dnxcore50": {
"imports": "portable-net45+win8"
}
}
}

View file

@ -0,0 +1,8 @@
{
"dependencies": {
"NoSuchPackage": "1.0.0"
},
"frameworks": {
"dnx451": { }
}
}

View file

@ -0,0 +1,8 @@
{
"dependencies": {
"EmptyLibrary": "1.0.0-*"
},
"frameworks": {
"dnx451": { }
}
}

View file

@ -0,0 +1,8 @@
{
"version": "6.0.8",
"dependencies": {
},
"frameworks": {
"dnx451": { }
}
}

View file

@ -0,0 +1,6 @@
{
"projects": [
"src",
"../ext"
]
}

View file

@ -0,0 +1,8 @@
{
"dependencies": {
"Newtonsoft.Json": "6.0.8"
},
"frameworks": {
"dnx451": { }
}
}