mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
8c2e444049
Added Span support in some places already, and changed Nullable to annotations to declare intent to enable nullable at some point in the future
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>annotations</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="DirectXTexNet" Version="1.0.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="2.3.2" />
|
|
<PackageReference Include="RequiredMemberAttribute" Version="1.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SharpDX" Version="4.2.0" />
|
|
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
|
|
<PackageReference Include="System.Diagnostics.Tracing" Version="4.3.0" />
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Resource Include="Resources\magic.dat" />
|
|
</ItemGroup>
|
|
</Project> |