22 lines
944 B
XML
22 lines
944 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<!-- Required by the LibraryImportAttribute source generator (F3's
|
|
Linux SIGINT P/Invoke in Launching/ILauncherChildProcess.cs):
|
|
the generated marshalling stub calls through an unmanaged
|
|
function pointer, which the compiler only allows in an unsafe
|
|
context. -->
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="AcDream.Launcher.Core.Tests" />
|
|
<InternalsVisibleTo Include="AcDream.Launcher.Core.Tests.Fixtures.InstallLeaseHolder" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AcDream.Platform\AcDream.Platform.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|