feat(*): Add base solution and project files

This commit is contained in:
Josh Creek
2021-08-25 23:08:29 +01:00
parent af050c1b98
commit 473009f8a4
6 changed files with 741 additions and 0 deletions
+20
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="..\Creek.HelpfulExtensions\Creek.HelpfulExtensions.csproj" />
</ItemGroup>
</Project>