15 lines
569 B
XML
15 lines
569 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<AnalysisLevel>latest</AnalysisLevel>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(VoiceCatIosStatic)' == 'true'">
|
|
<RuntimeIdentifiers>ios-arm64;iossimulator-arm64</RuntimeIdentifiers>
|
|
<NuGetLockFilePath>packages.ios.lock.json</NuGetLockFilePath>
|
|
</PropertyGroup>
|
|
</Project>
|