Ryuclaw.Mac/Ryuclaw.Client.Mac/Ryuclaw.Client.Mac.csproj

35 lines
1.3 KiB
XML
Raw Permalink Normal View History

2023-08-25 12:39:31 +00:00
<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>
2023-08-28 16:38:06 +00:00
<WarningLevel>4</WarningLevel>
<LinkMode>None</LinkMode>
2023-08-25 12:39:31 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CreatePackage>false</CreatePackage>
<UseSGen>false</UseSGen>
2023-08-28 16:38:06 +00:00
<LinkMode>None</LinkMode>
2023-08-25 12:39:31 +00:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Ryuclaw.Shared\Ryuclaw.Shared.csproj" />
<ProjectReference Include="..\Ryuclaw.Speech.MacOS\Ryuclaw.Speech.MacOS.csproj" />
2023-08-28 16:38:06 +00:00
<ProjectReference Include="..\Ryuclaw.Audio.Desktop\Ryuclaw.Audio.Desktop.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="dylibs/soft_oal.dll.dylib" Link="soft_oal.dll.dylib">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="dylibs\" />
2023-08-25 12:39:31 +00:00
</ItemGroup>
</Project>