Remade manually because the original commit edited a solution thats very different from current.
19 lines
693 B
XML
19 lines
693 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);._*</DefaultItemExcludes>
|
|
<Configurations>Debug;Release;DebugAOT;ReleaseAOT</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" />
|
|
<PackageReference Include="MsgPack.Cli" />
|
|
<PackageReference Include="System.Management" />
|
|
<PackageReference Include="Humanizer" />
|
|
<PackageReference Include="Gommon" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|