diff --git a/src/modules/launcher/appveyor.yml b/src/modules/launcher/appveyor.yml deleted file mode 100644 index 20efd8dcc0..0000000000 --- a/src/modules/launcher/appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -version: 1.3.{build} -image: Visual Studio 2017 -configuration: Release -platform: Any CPU -assembly_info: - patch: true - file: AssemblyInfo.* - assembly_version: '{version}' - assembly_file_version: '{version}' - assembly_informational_version: '{version}' -before_build: -- ps: nuget restore -build: - project: Wox.sln -after_test: -artifacts: -- path: 'Output\Packages\Wox-*.zip' - name: zipped_binary -- path: 'Output\Packages\Wox.Plugin.*.nupkg' - name: nuget_package -- path: 'Output\Packages\Wox-*.*' - name: installer -- path: 'Output\Packages\RELEASES' - name: installer -deploy: - provider: NuGet - api_key: - secure: yybUOFgBuGVpbmOVZxsurC8OpkClzt9dR+/54WpMWcq6b6oyMatciaelRPnXsjRn - artifact: nuget_package - on: - branch: api \ No newline at end of file diff --git a/src/modules/launcher/azure-pipelines.yml b/src/modules/launcher/azure-pipelines.yml deleted file mode 100644 index 5307ec0067..0000000000 --- a/src/modules/launcher/azure-pipelines.yml +++ /dev/null @@ -1,34 +0,0 @@ -# .NET Desktop -# Build and run tests for .NET Desktop or Windows classic desktop solutions. -# Add steps that publish symbols, save build artifacts, and more: -# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net - -trigger: -- master -- dev - -pool: - vmImage: 'vs2017-win2016' #'due to windows SDK dependency for building UWP project' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@1 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: VSBuild@1 - inputs: - solution: '$(solution)' - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' - -- task: VSTest@2 - inputs: - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)'