Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- Uncomment the following lines when preparing for release builds.
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
-->
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<!--Specify the category for your app here.-->
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<key>LSApplicationCategoryType</key>
<string>public.app-category.productivity</string>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<key>UIDeviceFamily</key>
<array>
<integer>2</integer>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,56 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-maccatalyst</TargetFramework>
<!--Both architectures:
<RuntimeIdentifier>maccatalyst-x64;maccatalyst-arm64</RuntimeIdentifier>-->
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<!--Only x64. Please note that selecting only arm64 is not permitted.-->
<RuntimeIdentifier>maccatalyst-x64</RuntimeIdentifier>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<SupportedOSPlatformVersion>14.2</SupportedOSPlatformVersion>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<CreatePackage>false</CreatePackage>
</PropertyGroup>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated

<!--
For Debug: (Note: Replace placeholder information before building)
<PropertyGroup Condition="$(TargetFramework.Contains('-maccatalyst')) and '$(Configuration)' == 'Debug'">
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<MtouchLink>none</MtouchLink>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<EnableCodeSigning>false</EnableCodeSigning>
<ProvisionType>Manual</ProvisionType>
<CreatePackage>false</CreatePackage>
<EnablePackageSigning>true</EnablePackageSigning>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<CodesignKey>Apple Distribution: YOURNAME (*******)</CodesignKey>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<CodesignProvision>YOUR PROFILE NAME</CodesignProvision>
<PackageSigningKey>3rd Party Mac Developer Installer: YOURNAME (*******)</PackageSigningKey>
<UseHardenedRuntime>false</UseHardenedRuntime>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
</PropertyGroup>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
-->

<!--
For Release: (Note: Replace placeholder information before building)
<PropertyGroup Condition="$(TargetFramework.Contains('-maccatalyst')) and '$(Configuration)' == 'Release'">
<MtouchLink>Full</MtouchLink>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">MacCatalystApp1</RootNamespace>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<SupportedOSPlatformVersion>minOSVersion</SupportedOSPlatformVersion>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated
</PropertyGroup>
</Project>
<EnableCodeSigning>True</EnableCodeSigning>
<ProvisionType>Manual</ProvisionType>
<CreatePackage>true</CreatePackage>
<EnablePackageSigning>true</EnablePackageSigning>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<CodesignKey>Apple Distribution: YOURNAME (*******)</CodesignKey>
<CodesignProvision>YOUR PROFILE NAME</CodesignProvision>
<PackageSigningKey>3rd Party Mac Developer Installer: YOURNAME (*******)</PackageSigningKey>
<UseHardenedRuntime>true</UseHardenedRuntime>
</PropertyGroup>-->

</Project>
Comment thread
dustin-wojciechowski marked this conversation as resolved.
Outdated