20 lines
570 B
XML
20 lines
570 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<IsPackable>True</IsPackable>
|
|
<Version>1.1.0</Version>
|
|
<AssemblyVersion>1.1.0</AssemblyVersion>
|
|
<FileVersion>1.1.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Misaki.HighPerformance.LowLevel\Misaki.HighPerformance.LowLevel.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|