Files
voice-cat/clients/windows/VoiceCat.Interop/VoiceCat.Interop.csproj
T

15 lines
528 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Native function pointers (NativeCallbacks.cs) and struct-array pointer walking
(Marshaling.cs) need unsafe blocks. -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RootNamespace>VoiceCat.Interop</RootNamespace>
</PropertyGroup>
<ItemGroup><InternalsVisibleTo Include="VoiceCat.Interop.Tests" /></ItemGroup>
</Project>