Files
voice-cat/dotnet/Directory.Build.props
T

15 lines
581 B
XML
Raw Normal View History

<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2026-09-19 15:43:37 +02:00
<PropertyGroup Condition="'$(VoiceCatIosStatic)' == 'true'">
<DefineConstants>$(DefineConstants);VOICECAT_IOS_STATIC</DefineConstants>
2026-09-19 19:33:10 +02:00
<RuntimeIdentifiers>ios-arm64;iossimulator-arm64</RuntimeIdentifiers>
2026-09-19 15:43:37 +02:00
</PropertyGroup>
</Project>