Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tools] Improve error message when deployment target is too old. #21211

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions tools/mtouch/Errors.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tools/mtouch/Errors.resx
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,9 @@
</data>

<data name="MT0073" xml:space="preserve">
<value>{4} {0} does not support a deployment target of {1} for {3} (the minimum is {2}). Please select a newer deployment target in your project's Info.plist.
<value>{4} {0} does not support a deployment target of {1} for {3} (the minimum is {2}). Please select a newer deployment target in your project's Info.plist or change the SupportedOSPlatformVersion property in your project file.
</value>
<comment>The following are literal names and should not be translated: SDK, Xcode
<comment>The following are literal names and should not be translated: SDK, Xcode, SupportedOSPlatformVersion, Info.plist
{0} - The version number of the .NET SDK.
{1} - The name of the deployment target such as a device, simulator, etc.
{2} - The minimum version number.
Expand All @@ -376,9 +376,9 @@
</data>

<data name="MX0074" xml:space="preserve">
<value>{4} {0} does not support a deployment target of {1} for {3} (the maximum is {2}). Please select an older deployment target in your project's Info.plist or upgrade to a newer version of {4}.
<value>{4} {0} does not support a deployment target of {1} for {3} (the maximum is {2}). Please select an older deployment target in your project's Info.plist or change the SupportedOSPlatformVersion property in your project file, or upgrade to a newer version of {4}.
</value>
<comment>The following are literal names and should not be translated: SDK, Xcode
<comment>The following are literal names and should not be translated: SDK, Xcode, SupportedOSPlatformVersion, Info.plist
{0} - The version number of the .NET SDK product.
{1} - The name of the deployment target such as a device, simulator, etc.
{2} - The maximum version number.
Expand Down
Loading