18 lines
754 B
XML
18 lines
754 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\nuget.props" />
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<Optimize>true</Optimize>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<Optimize>false</Optimize>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Buffers" Version="$(SystemBuffers)" />
|
|
<PackageReference Include="System.IO" Version="$(SystemIO)" />
|
|
</ItemGroup>
|
|
</Project> |