AssemblyTool/RecodeItLib/ReCodeItLib.csproj

20 lines
534 B
XML
Raw Normal View History

2024-06-11 19:18:48 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-06-13 18:15:52 -04:00
<OutputType>Library</OutputType>
2024-06-11 19:18:48 -04:00
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="0.11.5" />
2024-06-13 07:45:40 -04:00
<PackageReference Include="morelinq" Version="4.2.0" />
2024-06-11 19:18:48 -04:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
2024-06-14 18:07:01 -04:00
<ItemGroup>
2024-06-15 16:21:12 -04:00
<Folder Include="CrossMapper\" />
2024-06-14 18:07:01 -04:00
</ItemGroup>
2024-06-11 19:18:48 -04:00
</Project>