a bit of restructuring

This commit is contained in:
Yaakov 2021-09-25 22:17:53 +10:00
parent ddbef0a75e
commit fab5d2a902
7 changed files with 124 additions and 35 deletions

View file

@ -0,0 +1,18 @@
using NUnit.Framework;
namespace console.tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}

View file

@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="NUnit" Version="3.13.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Include="coverlet.collector" Version="3.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\console\shamir.csproj" />
</ItemGroup>
</Project>