From c8413cb18e1a9511d7521e26c66455e53b170207 Mon Sep 17 00:00:00 2001 From: "Sean D. Hunt" Date: Mon, 10 Dec 2018 22:55:33 -0500 Subject: [PATCH] Fixed appveyor configuration. --- appveyor.yml | 3 +-- update-externals.ps1 | 21 --------------------- 2 files changed, 1 insertion(+), 23 deletions(-) delete mode 100644 update-externals.ps1 diff --git a/appveyor.yml b/appveyor.yml index fdcb8e5..f862d62 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,7 +11,6 @@ image: - Visual Studio 2017 configuration: Release platform: Any CPU -cache: externals/Els_kom_new assembly_info: patch: true file: AssemblyInfo.* @@ -19,7 +18,7 @@ assembly_info: assembly_file_version: "{version}" assembly_informational_version: "{version}" before_build: -- ps: ./update-externals.ps1 +- ps: nuget restore build: project: callbacktest_plugin.sln parallel: true diff --git a/update-externals.ps1 b/update-externals.ps1 deleted file mode 100644 index 9212c53..0000000 --- a/update-externals.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -Set-Location -Path externals -$env:elskomnewpth = Join-Path (Get-Location) Els_kom_new -if(!(Test-Path -Path $env:elskomnewpth)) -{ - git clone -q https://github.com/Elskom/Els_kom_new.git --recursive - Set-Location -Path Els_kom_new - nuget restore - msbuild pcbuild.sln /nologo /verbosity:m /m - Set-Location -Path ../ -} -else -{ - Set-Location -Path Els_kom_new - git reset -q --hard - git pull -q - nuget restore - msbuild pcbuild.sln /nologo /verbosity:m /m - Set-Location -Path ../ -} -Set-Location -Path .. -nuget restore