feat: 🙈 Add gitignore

This commit is contained in:
2023-10-12 09:34:33 +02:00
parent 10bca59719
commit ee1cbcfcda
11 changed files with 126 additions and 0 deletions

25
Tests/Tests.csproj Normal file
View File

@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
<PackageReference Include="xunit" Version="2.4.2"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>

9
Tests/UnitTest1.cs Normal file
View File

@ -0,0 +1,9 @@
namespace Tests;
public class UnitTest1
{
[Fact]
public void Test1()
{
}
}

1
Tests/Usings.cs Normal file
View File

@ -0,0 +1 @@
global using Xunit;