From 549c67e356bc8d9f7952d5b3b417f23fea8d325c Mon Sep 17 00:00:00 2001 From: Nomango <569629550@qq.com> Date: Fri, 9 Aug 2019 22:19:12 +0800 Subject: [PATCH] revert: CoApp version fall back to 1.23.x --- appveyor.yml | 5 +++-- projects/kiwano-audio.vcxproj | 2 +- projects/kiwano-imgui.vcxproj | 2 +- projects/kiwano-network.vcxproj | 2 +- projects/kiwano.vcxproj | 2 +- scripts/appveyor/install_coapp.ps1 | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 72dea542..c4d1800b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,8 +2,8 @@ version: 0.9.{build} skip_tags: true -pull_requests: - do_not_increment_build_number: true +# pull_requests: +# do_not_increment_build_number: true # image: # - Visual Studio 2019 @@ -76,6 +76,7 @@ before_deploy: deploy: - provider: GitHub + repository: KiwanoEngine/Kiwano tag: v$(appveyor_build_version) release: v$(appveyor_build_version) description: Kiwano-v$(appveyor_build_version) releases. diff --git a/projects/kiwano-audio.vcxproj b/projects/kiwano-audio.vcxproj index 1874ba50..28dbcd6a 100644 --- a/projects/kiwano-audio.vcxproj +++ b/projects/kiwano-audio.vcxproj @@ -75,7 +75,7 @@ Level3 Disabled true - ProgramDatabase + None true ../src/ false diff --git a/projects/kiwano-imgui.vcxproj b/projects/kiwano-imgui.vcxproj index d729b6cb..1ece0103 100644 --- a/projects/kiwano-imgui.vcxproj +++ b/projects/kiwano-imgui.vcxproj @@ -84,7 +84,7 @@ Level3 Disabled true - ProgramDatabase + None true ../src/ false diff --git a/projects/kiwano-network.vcxproj b/projects/kiwano-network.vcxproj index 9922789f..bf1c120c 100644 --- a/projects/kiwano-network.vcxproj +++ b/projects/kiwano-network.vcxproj @@ -73,7 +73,7 @@ Level3 Disabled true - ProgramDatabase + None true ../src/ false diff --git a/projects/kiwano.vcxproj b/projects/kiwano.vcxproj index 2b4e6407..14d78e67 100644 --- a/projects/kiwano.vcxproj +++ b/projects/kiwano.vcxproj @@ -181,7 +181,7 @@ Level3 Disabled true - ProgramDatabase + None true false diff --git a/scripts/appveyor/install_coapp.ps1 b/scripts/appveyor/install_coapp.ps1 index 83041ac4..d03d5c00 100644 --- a/scripts/appveyor/install_coapp.ps1 +++ b/scripts/appveyor/install_coapp.ps1 @@ -1,6 +1,6 @@ # Download the CoApp tools. -$msiPath = "$($env:USERPROFILE)\Development.CoApp.Tools.Powershell.msi" -(New-Object Net.WebClient).DownloadFile('http://coapp.org/files/Development.CoApp.Tools.Powershell.msi', $msiPath) +$msiPath = "$($env:USERPROFILE)\CoApp.Tools.Powershell.msi" +(New-Object Net.WebClient).DownloadFile('http://coapp.org/files/CoApp.Tools.Powershell.msi', $msiPath) # Install the CoApp tools from the downloaded .msi. Start-Process -FilePath msiexec -ArgumentList /i, $msiPath, /quiet -Wait