a running test template (coreclr)

This commit is contained in:
2017-03-23 01:01:26 +01:00
parent d5c6a2510b
commit e1a3aeca77
2 changed files with 27 additions and 0 deletions

14
test/UnitTest1.cs Executable file
View File

@ -0,0 +1,14 @@
using System;
using Xunit;
namespace test1
{
public class UnitTest1
{
[Fact]
public void Test1()
{
}
}
}

13
test/test.csproj Executable file
View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="xunit" Version="2.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
</ItemGroup>
</Project>