chore: initial project setup

This commit is contained in:
Stevan Freeborn
2026-02-01 04:23:12 -06:00
commit 9c38aff40f
18 changed files with 1746 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
[*.cs]
dotnet_diagnostic.CA1707.severity = none
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>FiscalOS.API.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AwesomeAssertions" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="xunit.v3.mtp-v2" />
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FiscalOS.API\FiscalOS.API.csproj" />
</ItemGroup>
</Project>
+5
View File
@@ -0,0 +1,5 @@
global using FiscalOS.API.Tests.Infra;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Mvc.Testing;
global using Microsoft.Extensions.Logging;
@@ -0,0 +1,3 @@
{
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json"
}