reformat
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ben Harris 2024-05-10 13:27:12 -04:00
parent 92dd5ba7a0
commit 3246bad083
2 changed files with 21 additions and 20 deletions

View File

@ -5,11 +5,11 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Diagnostics" />
<Using Include="System.Numerics" />
<Using Include="System.Reflection" />
<Using Include="System.Diagnostics"/>
<Using Include="System.Numerics"/>
<Using Include="System.Reflection"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="CommandLineParser" Version="2.9.1"/>
</ItemGroup>
</Project>

View File

@ -1,20 +1,21 @@
<Project Sdk="MSTest.Sdk/3.3.1">
<Project Sdk="MSTest.Sdk/3.3.1">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Using Include="AOC.Common" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="System.Diagnostics" />
</ItemGroup>
<ItemGroup>
<Using Include="AOC.Common" />
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
<Using Include="System.Diagnostics" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC20*\AOC*.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC20*\AOC*.csproj" />
<ProjectReference Include="..\AOC.Common\AOC.Common.csproj" />
</ItemGroup>
</Project>
</Project>