From f15ea24d9bd50f820bfc8f83b7493bf66e1ed0f2 Mon Sep 17 00:00:00 2001 From: Teshvier Mathura Date: Tue, 2 Jun 2020 17:17:12 +0200 Subject: [PATCH] fix build --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 82f3323..3b233fb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,13 +24,13 @@ before_build: - cmd: >- cd Spacearr.Android\Properties - powershell -Command "(gc AndroidManifest.xml) -replace 'android:versionName=""""1.0""""', 'android:versionName=""""$env:APPVEYOR_BUILD_VERSION""""' | Out-File -encoding ASCII AndroidManifest.xml" + powershell -Command "(gc AndroidManifest.xml) -replace 'android:versionName=""""1.0""""', ('android:versionName=""""' + $env:APPVEYOR_BUILD_VERSION + '""""') | Out-File -encoding ASCII AndroidManifest.xml" more AndroidManifest.xml - cmd: >- cd Spacearr.UWP - powershell -Command "(gc Package.appxmanifest) -replace 'Version=""""1.0.0.0""""', 'Version=""""$env:APPVEYOR_BUILD_VERSION""""' | Out-File -encoding ASCII Package.appxmanifest" + powershell -Command "(gc Package.appxmanifest) -replace 'Version=""""1.0.0.0""""', ('Version=""""' + $env:APPVEYOR_BUILD_VERSION +'""""') | Out-File -encoding ASCII Package.appxmanifest" more Package.appxmanifest build: