22 lines
841 B
XML
22 lines
841 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0-macos</TargetFramework>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>true</ImplicitUsings>
|
||
|
<SupportedOSPlatformVersion>10.14</SupportedOSPlatformVersion>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||
|
<CreatePackage>false</CreatePackage>
|
||
|
<UseSGen>false</UseSGen>
|
||
|
</PropertyGroup>
|
||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||
|
<CreatePackage>false</CreatePackage>
|
||
|
<UseSGen>false</UseSGen>
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Ryuclaw.Shared\Ryuclaw.Shared.csproj" />
|
||
|
<ProjectReference Include="..\Ryuclaw.Speech.MacOS\Ryuclaw.Speech.MacOS.csproj" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|