19 lines
775 B
XML
19 lines
775 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>net10.0-macos</TargetFramework>
|
||
|
|
<RuntimeIdentifier>osx-arm64</RuntimeIdentifier>
|
||
|
|
<SupportedOSPlatformVersion>14.0</SupportedOSPlatformVersion>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<ApplicationTitle>VoiceCat</ApplicationTitle>
|
||
|
|
<ApplicationId>net.iamtalon.voicecat</ApplicationId>
|
||
|
|
<UseHardenedRuntime>true</UseHardenedRuntime>
|
||
|
|
<ApplicationManifest>Info.plist</ApplicationManifest>
|
||
|
|
<CodesignEntitlements>VoiceCat.Mac.entitlements</CodesignEntitlements>
|
||
|
|
</PropertyGroup>
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="../../../../dotnet/src/VoiceCat.Core/VoiceCat.Core.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|