Add Base.Test, Remove Filesystem

This commit is contained in:
Jonathan Jenne
2023-09-05 10:37:52 +02:00
parent e12b087c94
commit af90bb9efe
3 changed files with 38 additions and 7 deletions

12
Base.Test/.vb Normal file
View File

@@ -0,0 +1,12 @@
Imports Microsoft.VisualStudio.TestTools.UnitTesting
Namespace Base.Test
<TestClass>
Public Class UnitTest1
<TestMethod>
Sub TestSub()
End Sub
End Class
End Namespace

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Base.Test</RootNamespace>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>
</Project>