Add a test case for a desktop app using Command.CreateDotnet, expecting to fail
This commit is contained in:
parent
bc8b0c065f
commit
56194a8e12
9 changed files with 142 additions and 18 deletions
12
TestAssets/TestProjects/TestAppSimple/Program.cs
Normal file
12
TestAssets/TestProjects/TestAppSimple/Program.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace ConsoleApplication
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
12
TestAssets/TestProjects/TestAppSimple/project.json
Normal file
12
TestAssets/TestProjects/TestAppSimple/project.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"compilationOptions": {
|
||||
"emitEntryPoint": true
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": "1.0.0-rc2-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue