[dotnet] Add _CreateDebugSettings, _CreateDebugConfiguration and _CreatePkgInfo to the targets we run on app creation. (#10061)

This commit is contained in:
Rolf Bjarne Kvinge 2020-11-10 13:44:26 +01:00 коммит произвёл GitHub
Родитель ac36750f49
Коммит db23ca881a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -146,6 +146,7 @@
_DetectAppManifest;
_CopyResourcesToBundle;
_CompileCoreMLModels;
_CreatePkgInfo;
_SmeltMetal;
_ForgeMetal;
_TemperMetal;
@ -162,6 +163,12 @@
CopyFilesToPublishDirectory;
_CopyAppExtensionsToBundle;
</CreateAppBundleDependsOn>
<CreateAppBundleDependsOn Condition="'$(_PlatformName)' != 'macOS'">
_CreateDebugSettings;
_CreateDebugConfiguration;
$(CreateAppBundleDependsOn);
</CreateAppBundleDependsOn>
</PropertyGroup>
<!-- Linker -->

Просмотреть файл

@ -104,10 +104,7 @@ namespace Xamarin.Tests {
var filename = Path.GetFileName (v);
switch (filename) {
case "MonoTouchDebugConfiguration.txt": // TODO
case "PkgInfo": // TODO
case "runtime-options.plist": // TODO
case "Root.plist": // TODO
return false;
}