Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5f4bb9f
[dotnet] Quote MlaunchPath in generated mobile run scripts (#25680)
rolfbjarne Jun 16, 2026
b570c25
[tests] Add a few missing warning filters. (#25650)
rolfbjarne Jun 16, 2026
72c0e37
[devops] Don't clean ACES bots. (#25646)
rolfbjarne Jun 16, 2026
9390bde
[tests] Clean up Configure.cs a bit. (#25692)
rolfbjarne Jun 16, 2026
3bda37b
[tools] Simplify the creation of the list of frameworks a bit. (#25618)
rolfbjarne Jun 16, 2026
dadb6cc
[dotnet] Use desktop MSBuild task assemblies in VS for all platforms …
kotlarmilos Jun 16, 2026
58e1841
[dotnet] Put type-map.txt into the linker cache directory. (#25654)
rolfbjarne Jun 16, 2026
cf356c0
[tests] Update MSBuild.StructuredLogger to 2.2.243 (#25679)
rolfbjarne Jun 17, 2026
0b7248f
LEGO: Pull request from lego/hb_5df43909-4a19-4f55-bc3f-9ea8fccf3c82_…
csigs Jun 17, 2026
c06da35
[main] Update dependencies from dotnet/xharness (#25586)
dotnet-maestro[bot] Jun 17, 2026
1f5fd5c
[main] Update dependencies from dotnet/dotnet (#25657)
dotnet-maestro[bot] Jun 17, 2026
022f20f
[docs] Improve XML docs for SystemConfigurationException (#25704)
rolfbjarne Jun 17, 2026
4e0d12a
[src] Fix numerous API typos and improve the introspection typo test.…
rolfbjarne Jun 17, 2026
a590a84
[mtouch] Guard RunRegistrar calls with platform ifdef checks (#25678)
rolfbjarne Jun 17, 2026
c603497
[tools] Move RegistrarMode to its own file.
rolfbjarne Jan 21, 2026
d1d410a
[tools] Move NormalizedStringComparer into its own file.
rolfbjarne Jan 21, 2026
8853926
[xharness] Run the new assembly processing tests.
rolfbjarne Jun 4, 2026
93ba282
[tools] Remove some dead code
rolfbjarne Jan 21, 2026
e0c4e45
[tools] Extract OptimizeGeneratedCode into its own class.
rolfbjarne Jun 4, 2026
ba547a3
[dotnet-linker] Refactor LinkerConfiguration to support read/write.
rolfbjarne Jun 4, 2026
61e1f04
[tools] Add VSCode tasks.
rolfbjarne Jun 4, 2026
e194a4b
[tools] Add link to NoWarn issue
rolfbjarne Jun 4, 2026
0a36fff
[tests] Create an opt-in test to capture build performance
rolfbjarne Jun 5, 2026
5da9d43
[dotnet-linker] Move methods from ManagedRegistrarLookupTablesStep to…
rolfbjarne Jun 5, 2026
23cb3bc
[assembly-preparer] Create a new tool to replace pre-mark custom link…
rolfbjarne Jan 21, 2026
591aa7f
[assembly-preparer] Create a new tool to replace pre-mark custom link…
rolfbjarne Jun 17, 2026
bacfada
[docs] Improve XML docs for StatusCodeError (#25710)
rolfbjarne Jun 17, 2026
ab09468
[tests] Replace httpbin.org with an in-proc HTTP server to improve re…
rolfbjarne Jun 17, 2026
9797705
Merge branch 'main' into 'xcode27.0'
github-actions[bot] Jun 17, 2026
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
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<!-- Disables the transitive restore of packages like Microsoft.AspNetCore.App.Ref, Microsoft.WindowsDesktop.App.Ref -->
<DisableTransitiveFrameworkReferenceDownloads>true</DisableTransitiveFrameworkReferenceDownloads>
<MSBuildStructuredLoggerPackageVersion>2.2.158</MSBuildStructuredLoggerPackageVersion>
<MSBuildStructuredLoggerPackageVersion>2.2.243</MSBuildStructuredLoggerPackageVersion>
<MicrosoftBuildPackageVersion>17.13.26</MicrosoftBuildPackageVersion>
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
<MicrosoftBuildTasksCorePackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildTasksCorePackageVersion>
Expand Down
6 changes: 3 additions & 3 deletions dotnet/targets/Microsoft.Sdk.Mobile.targets
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@

<WriteLinesToFile
File="$(MlaunchInstallScript)"
Lines="$(MlaunchPath) $(MlaunchInstallArguments)"
Lines="'$(MlaunchPath)' $(MlaunchInstallArguments)"
Overwrite="true"
WriteOnlyWhenDifferent="true"
Condition="'$(MlaunchInstallScript)' != ''"
Expand Down Expand Up @@ -128,14 +128,14 @@

<WriteLinesToFile
File="$(MlaunchRunScript)"
Lines="$(MlaunchPath) $(MlaunchRunArguments)"
Lines="'$(MlaunchPath)' $(MlaunchRunArguments)"
Overwrite="true"
WriteOnlyWhenDifferent="true"
Condition="'$(MlaunchRunScript)' != ''"
/>

<PropertyGroup>
<RunCommand>$(MlaunchPath)</RunCommand>
<RunCommand>'$(MlaunchPath)'</RunCommand>
<RunArguments>$(MlaunchRunArguments) -- </RunArguments>
</PropertyGroup>
</Target>
Expand Down
3 changes: 3 additions & 0 deletions dotnet/targets/Xamarin.Shared.Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
<Import Project="$(_MobilePropsPath)" Condition="Exists('$(_MobilePropsPath)') And ('$(BuildingInsideVisualStudio)' == 'true' Or '$(DesignTimeBuild)' == 'true')" />

<PropertyGroup>
<!-- Keep using the desktop (netstandard2.0) MSBuild task assemblies when building from within Visual Studio (on Windows), instead of the net assemblies that require a .NET task host (which doesn't work reliably, in particular on Windows ARM64). The iOS Sdk.props sets this earlier because it also drives CoreiOSSdkDirectory; the condition below makes it apply to the other platforms (MacCatalyst, macOS, tvOS) too. -->
<_UseDesktopTaskAssemblies Condition="'$(_UseDesktopTaskAssemblies)' == '' And '$(BuildingInsideVisualStudio)' == 'true'">true</_UseDesktopTaskAssemblies>

<!-- Set to true when using the Microsoft.<platform>.Sdk NuGet. This is used by pre-existing/shared targets to tweak behavior depending on build system -->
<UsingAppleNETSdk>true</UsingAppleNETSdk>
<!-- This is the location of the Microsoft.<platform>.Sdk NuGet (/usr/local/share/dotnet/sdk/<version>/Sdks/Microsoft.[iOS/tvOS/MacCatalyst/macOS].Sdk) on the platform the build is running from (Mac or Win) -->
Expand Down
92 changes: 61 additions & 31 deletions dotnet/targets/Xamarin.Shared.Sdk.targets

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions eng/Version.Details.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ This file should be imported by eng/Versions.props
<Project>
<PropertyGroup>
<!-- dotnet-dotnet dependencies -->
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26281.104</MicrosoftDotNetArcadeSdkPackageVersion>
<MicrosoftDotNetBuildTasksFeedPackageVersion>10.0.0-beta.26281.104</MicrosoftDotNetBuildTasksFeedPackageVersion>
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.26316.107</MicrosoftDotNetArcadeSdkPackageVersion>
<MicrosoftDotNetBuildTasksFeedPackageVersion>10.0.0-beta.26316.107</MicrosoftDotNetBuildTasksFeedPackageVersion>
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.26070.104</MicrosoftDotNetCecilPackageVersion>
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>10.0.0-beta.26281.104</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>10.0.0-beta.26316.107</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
<MicrosoftNETILLinkPackageVersion>10.0.3-servicing.26070.104</MicrosoftNETILLinkPackageVersion>
<MicrosoftNETILLinkTasksPackageVersion>10.0.3</MicrosoftNETILLinkTasksPackageVersion>
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>10.0.3</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
<MicrosoftNETSdkPackageVersion>10.0.400-preview.0.26281.104</MicrosoftNETSdkPackageVersion>
<MicrosoftNETSdkPackageVersion>10.0.400-preview.0.26316.107</MicrosoftNETSdkPackageVersion>
<MicrosoftNETCoreAppRefPackageVersion>10.0.3</MicrosoftNETCoreAppRefPackageVersion>
<MicrosoftTemplateEngineAuthoringTasksPackageVersion>10.0.400-preview.26281.104</MicrosoftTemplateEngineAuthoringTasksPackageVersion>
<MicrosoftTemplateEngineAuthoringTasksPackageVersion>10.0.400-preview.26316.107</MicrosoftTemplateEngineAuthoringTasksPackageVersion>
<!-- dotnet-macios dependencies -->
<MicrosoftiOSSdknet100_260PackageVersion>26.0.11017</MicrosoftiOSSdknet100_260PackageVersion>
<MicrosoftiOSSdknet90_185PackageVersion>18.5.9227</MicrosoftiOSSdknet90_185PackageVersion>
Expand All @@ -30,7 +30,7 @@ This file should be imported by eng/Versions.props
<MicrosofttvOSSdknet90_185PackageVersion>18.5.9227</MicrosofttvOSSdknet90_185PackageVersion>
<MicrosofttvOSSdknet90_265PackageVersion>26.5.9004</MicrosofttvOSSdknet90_265PackageVersion>
<!-- dotnet-xharness dependencies -->
<MicrosoftDotNetXHarnessiOSSharedPackageVersion>11.0.0-prerelease.26264.1</MicrosoftDotNetXHarnessiOSSharedPackageVersion>
<MicrosoftDotNetXHarnessiOSSharedPackageVersion>11.0.0-prerelease.26316.1</MicrosoftDotNetXHarnessiOSSharedPackageVersion>
<!-- xamarin-xamarin-macios dependencies -->
<MicrosoftiOSSdknet90_180PackageVersion>18.0.9617</MicrosoftiOSSdknet90_180PackageVersion>
<MicrosoftMacCatalystSdknet90_180PackageVersion>18.0.9617</MicrosoftMacCatalystSdknet90_180PackageVersion>
Expand Down
24 changes: 12 additions & 12 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.NET.Sdk" Version="10.0.400-preview.0.26281.104">
<Dependency Name="Microsoft.NET.Sdk" Version="10.0.400-preview.0.26316.107">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>aec921632e75e1f29327709dd52e98c41f3b55cf</Sha>
<Sha>db90bcd4329f0e4488a7c050bc59d957db1715ee</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.ILLink" Version="10.0.3-servicing.26070.104">
<Uri>https://github.com/dotnet/dotnet</Uri>
Expand Down Expand Up @@ -95,25 +95,25 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="10.0.0-beta.26281.104">
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="10.0.0-beta.26316.107">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>aec921632e75e1f29327709dd52e98c41f3b55cf</Sha>
<Sha>db90bcd4329f0e4488a7c050bc59d957db1715ee</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="10.0.0-beta.26281.104">
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="10.0.0-beta.26316.107">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>aec921632e75e1f29327709dd52e98c41f3b55cf</Sha>
<Sha>db90bcd4329f0e4488a7c050bc59d957db1715ee</Sha>
</Dependency>
<Dependency Name="Microsoft.TemplateEngine.Authoring.Tasks" Version="10.0.400-preview.26281.104">
<Dependency Name="Microsoft.TemplateEngine.Authoring.Tasks" Version="10.0.400-preview.26316.107">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>aec921632e75e1f29327709dd52e98c41f3b55cf</Sha>
<Sha>db90bcd4329f0e4488a7c050bc59d957db1715ee</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.XHarness.iOS.Shared" Version="11.0.0-prerelease.26264.1">
<Dependency Name="Microsoft.DotNet.XHarness.iOS.Shared" Version="11.0.0-prerelease.26316.1">
<Uri>https://github.com/dotnet/xharness</Uri>
<Sha>51ca379106cfd749a498cb0822210ef1aa926e41</Sha>
<Sha>8d6fae7775722b0ec2c57d119efc164ec36cb837</Sha>
</Dependency>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26281.104">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.26316.107">
<Uri>https://github.com/dotnet/dotnet</Uri>
<Sha>aec921632e75e1f29327709dd52e98c41f3b55cf</Sha>
<Sha>db90bcd4329f0e4488a7c050bc59d957db1715ee</Sha>
<SourceBuild RepoName="arcade" ManagedOnly="true" />
</Dependency>
</ToolsetDependencies>
Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"sdk": {
"version": "10.0.400-preview.0.26281.104",
"version": "10.0.400-preview.0.26316.107",
"paths": [
"builds/downloads/dotnet",
"$host$"
],
"errorMessage": "The .NET SDK could not be found, please run 'make dotnet -C builds'."
},
"tools": {
"dotnet": "10.0.400-preview.0.26281.104"
"dotnet": "10.0.400-preview.0.26316.107"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26281.104"
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26316.107"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2734,6 +2734,24 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7175" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The {0} simulator runtime is not installed. This is required by Apple's development tools (even when building for physical devices). Install it by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} シミュレーター ランタイムがインストールされていません。これは、Apple の開発ツールで必要です(実機向けにビルドする場合も同様です)。コマンド ラインで 'xcodebuild -downloadPlatform {0}' を実行してインストールするか、Xcode (設定 > コンポーネント) からインストールしてください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7177" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The installed {0} simulator runtime is not compatible with the current Xcode version. Update the simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[インストールされている {0} シミュレーター ランタイムは、現在の Xcode バージョンと互換性がありません。コマンド ラインで 'xcodebuild -downloadPlatform {0}' を実行してシミュレーター ランタイムを更新するか、Xcode (設定 > コンポーネント) から更新してください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InvalidFramework" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid framework: {0}]]></Val>
Expand Down Expand Up @@ -3661,6 +3679,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";W7176" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unable to determine if the {0} simulator runtime is installed. If the build fails or hangs, install the {0} simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} シミュレーター ランタイムがインストールされているかどうかを判断できません。ビルドが失敗するか、停止したままになる場合は、コマンド ラインで 'xcodebuild -downloadPlatform {0}' を実行して {0} シミュレーター ランタイムをインストールしてください。]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";XcodeBuild_CreateNativeRef" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Adding reference to Xcode project output: '{0}'. The '%(CreateNativeReference)' metadata can be set to 'false' to opt out of this behavior.]]></Val>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2734,6 +2734,24 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7175" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The {0} simulator runtime is not installed. This is required by Apple's development tools (even when building for physical devices). Install it by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Среда выполнения симулятора {0} не установлена. Она необходима для инструментов разработки Apple (даже при сборке для физических устройств). Установите ее, выполнив команду "xcodebuild -downloadPlatform {0}" из командной строки или в Xcode (Параметры > Компоненты).]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7177" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The installed {0} simulator runtime is not compatible with the current Xcode version. Update the simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Установленная среда выполнения симулятора {0} несовместима с текущей версией Xcode. Обновите среду выполнения симулятора, выполнив команду "xcodebuild -downloadPlatform {0}" из командной строки или в Xcode (Параметры > Компоненты).]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InvalidFramework" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid framework: {0}]]></Val>
Expand Down Expand Up @@ -3661,6 +3679,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";W7176" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unable to determine if the {0} simulator runtime is installed. If the build fails or hangs, install the {0} simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Не удалось определить, установлена ли среда выполнения симулятора {0}. Если сборка завершается сбоем или зависает, установите среду выполнения симулятора {0}, выполнив команду "xcodebuild -downloadPlatform {0}" из командной строки.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";XcodeBuild_CreateNativeRef" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Adding reference to Xcode project output: '{0}'. The '%(CreateNativeReference)' metadata can be set to 'false' to opt out of this behavior.]]></Val>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2734,6 +2734,24 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7175" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The {0} simulator runtime is not installed. This is required by Apple's development tools (even when building for physical devices). Install it by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} simülatör çalışma zamanı yüklü değil. Bu, Apple'ın geliştirme araçları için gereklidir (fiziksel cihazlar için derleme yaparken bile). Komut satırından veya Xcode'dan 'xcodebuild -downloadPlatform {0}' komutunu çalıştırarak yükleyin (Ayarlar > Bileşenleri).]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";E7177" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[The installed {0} simulator runtime is not compatible with the current Xcode version. Update the simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line, or from Xcode (Settings > Components).]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[Yüklü {0} simülatör çalışma zamanı geçerli Xcode sürümüyle uyumlu değil. Komut satırından 'xcodebuild -downloadPlatform {0}' komutunu çalıştırarak ya da Xcode içinden (Ayarlar > Bileşenler) simülatör çalışma zamanını güncelleştirin.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";InvalidFramework" ItemType="0;.resx" PsrId="211" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Invalid framework: {0}]]></Val>
Expand Down Expand Up @@ -3661,6 +3679,15 @@
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";W7176" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Unable to determine if the {0} simulator runtime is installed. If the build fails or hangs, install the {0} simulator runtime by running 'xcodebuild -downloadPlatform {0}' from the command line.]]></Val>
<Tgt Cat="Text" Stat="Loc" Orig="New">
<Val><![CDATA[{0} simülatör çalışma zamanının yüklü olup olmadığı belirlenemiyor. Derleme başarısız olursa veya askıda kalırsa komut satırından 'xcodebuild -downloadPlatform {0}' komutunu çalıştırarak {0}simülatör çalışma zamanını yükleyin.]]></Val>
</Tgt>
</Str>
<Disp Icon="Str" />
</Item>
<Item ItemId=";XcodeBuild_CreateNativeRef" ItemType="0;.resx" PsrId="211" InstFlg="true" Leaf="true">
<Str Cat="Text">
<Val><![CDATA[Adding reference to Xcode project output: '{0}'. The '%(CreateNativeReference)' metadata can be set to 'false' to opt out of this behavior.]]></Val>
Expand Down
Loading
Loading