-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathMac.Build.props
More file actions
19 lines (19 loc) · 832 Bytes
/
Mac.Build.props
File metadata and controls
19 lines (19 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<PropertyGroup Condition="'$(IsMacOS)' == 'true'">
<TargetPlatformVersion>$(MacTargetPlatformVersion)</TargetPlatformVersion>
<SelfContained>true</SelfContained>
<ApplicationTitle>ControlR</ApplicationTitle>
<UseAppHost>true</UseAppHost>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion>12.0</SupportedOSPlatformVersion>
<CreatePackage>false</CreatePackage>
<RuntimeIdentifiers>osx-arm64;osx-x64</RuntimeIdentifiers>
<PublishTrimmed>true</PublishTrimmed>
<MtouchLink>None</MtouchLink>
<TrimMode>none</TrimMode>
<LinkMode>none</LinkMode>
<SuppressTrimAnalysisWarnings>true</SuppressTrimAnalysisWarnings>
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
</PropertyGroup>
</Project>