15 lines
584 B
XML
15 lines
584 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="../../../dotnet/src/VoiceCat.Core/VoiceCat.Core.csproj" />
|
||
|
|
<Compile Include="../VoiceCat.Interop/Enums.cs" Link="Enums.cs" />
|
||
|
|
<Compile Include="../VoiceCat.Interop/Models.cs" Link="Models.cs" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|