From e324d626f0542f1104ee8abd6098e7184c191e70 Mon Sep 17 00:00:00 2001 From: Dan Esparza Date: Wed, 20 Mar 2019 10:47:14 -0400 Subject: [PATCH] Delete azure-pipelines.yml Removing yml file (done with visual editor currently) --- azure-pipelines.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 513cf08..0000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,36 +0,0 @@ -# ASP.NET -# Build and test ASP.NET projects. -# Add steps that publish symbols, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 - -trigger: -- master - -pool: - vmImage: 'VS2017-Win2016' - -variables: - solution: '**/*.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - -steps: -- task: NuGetToolInstaller@0 - -- task: NuGetCommand@2 - inputs: - restoreSolution: '$(solution)' - -- task: VSBuild@1 - inputs: - solution: '$(solution)' - msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"' - platform: '$(buildPlatform)' - configuration: '$(buildConfiguration)' - -- task: GithubRelease@0 - displayName: ‘Create GitHub Release’ - inputs: - githubConnection: degithub - repositoryName: danesparza/Pushover.NET -