3 changed files with 35 additions and 0 deletions
@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk"> |
||||
|
||||
<PropertyGroup> |
||||
<TargetFramework>netcoreapp2.0</TargetFramework> |
||||
|
||||
<IsPackable>false</IsPackable> |
||||
</PropertyGroup> |
||||
|
||||
<ItemGroup> |
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0-preview-20170628-02" /> |
||||
<PackageReference Include="xunit" Version="2.2.0" /> |
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" /> |
||||
</ItemGroup> |
||||
|
||||
</Project> |
@ -0,0 +1,14 @@
|
||||
using System; |
||||
using Xunit; |
||||
|
||||
namespace CW_Core_Tests |
||||
{ |
||||
public class UnitTest1 |
||||
{ |
||||
[Fact] |
||||
public void Test1() |
||||
{ |
||||
|
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue