2026-05-31 11:18:27 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Dragon-ISO.Engine\Dragon-ISO.Engine.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Grant the engine test project visibility into internals (specifically
|
|
|
|
|
|
NdiInteropPInvoke.NormalizeGroups, which gates the "public" vs "Public"
|
|
|
|
|
|
NDI group case-folding fix). -->
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
|
|
|
|
<_Parameter1>Dragon-ISO.Engine.Tests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|