2026-05-07 11:08:21 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2026-05-16 18:33:49 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\TeamsISO.Engine\TeamsISO.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>TeamsISO.Engine.Tests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
2026-05-07 11:08:21 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|