2024-06-19 21:11:42 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-01-10 09:50:19 -05:00
|
|
|
|
<Version>1.0.0</Version>
|
2024-06-19 21:11:42 -04:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2025-01-11 01:43:59 -05:00
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2024-06-19 21:11:42 -04:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-01-11 06:08:17 -05:00
|
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
2025-01-11 23:49:06 -05:00
|
|
|
|
<Configurations>Debug;Release;WAIT_FOR_DEBUGGER</Configurations>
|
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
2024-06-19 21:11:42 -04:00
|
|
|
|
</PropertyGroup>
|
2024-07-03 07:03:14 -04:00
|
|
|
|
|
2024-06-19 21:11:42 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\RecodeItLib\ReCodeItLib.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="CliFx" Version="2.3.5" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|