From eb3d0d726f4d6f0cf3f9d1a2c5804195856f937b Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 28 May 2019 15:21:14 -0400 Subject: [PATCH] turn off rdp builds --- appveyor.yml | 8 ++++---- src/Android/ci-build-apks.ps1 | 20 ++++++++++---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index e0ce9fc61..0841a3c86 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ -init: - - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) -on_finish: - - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) +#init: +# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) +#on_finish: +# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) #install: # - choco install cloc --no-progress # - "cloc --vcs git --exclude-dir Resources,store,test,UWP,Properties --include-lang C#,JavaScript,TypeScript,PowerShell" diff --git a/src/Android/ci-build-apks.ps1 b/src/Android/ci-build-apks.ps1 index 7c8057fb0..8d3e9cdc1 100644 --- a/src/Android/ci-build-apks.ps1 +++ b/src/Android/ci-build-apks.ps1 @@ -56,16 +56,16 @@ $firebaseNode.ParentNode.RemoveChild($firebaseNode); $xml.Save($androidPath); -echo "##### Uninstall from App.csproj" - -$xml=New-Object XML; -$xml.Load($appPath); - -$hockeyNode=$xml.SelectSingleNode("/Project/ItemGroup/PackageReference[@Include='HockeySDK.Xamarin']"); -$hockeyNode.ParentNode.RemoveChild($hockeyNode); - -$xml.Save($appPath); - +#echo "##### Uninstall from App.csproj" +# +#$xml=New-Object XML; +#$xml.Load($appPath); +# +#$hockeyNode=$xml.SelectSingleNode("/Project/ItemGroup/PackageReference[@Include='HockeySDK.Xamarin']"); +#$hockeyNode.ParentNode.RemoveChild($hockeyNode); +# +#$xml.Save($appPath); +# echo "##### Restore NuGet" $nugetPath = $($rootPath + "\nuget.exe");