mirror of
https://github.com/kwsch/pkNX.git
synced 2026-09-12 04:25:21 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
19 lines
461 B
XML
19 lines
461 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Description>Data Structures - With FlatBuffers!</Description>
|
|
<LangVersion>10</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FlatSharp" Version="5.7.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\pkNX.Structures\pkNX.Structures.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|