Files
BadBuilder/BadBuilder/BadBuilder.csproj
2025-03-17 03:11:11 -04:00

28 lines
816 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Remove="fat32format.exe" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Octokit" Version="14.0.0" />
<PackageReference Include="SharpCompress" Version="0.39.0" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="System.Management" Version="9.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BadBuilder.Formatter\BadBuilder.Formatter.csproj" />
</ItemGroup>
</Project>