From 17fec13107195eb212fe28e145af5879bf461c29 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Thu, 29 Apr 2021 12:53:06 -0500 Subject: [PATCH] chore: delete unused azure pipelines yml --- azure-pipelines/build.yml | 54 --------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 azure-pipelines/build.yml diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml deleted file mode 100644 index e8cbc84c..00000000 --- a/azure-pipelines/build.yml +++ /dev/null @@ -1,54 +0,0 @@ -pool: - vmImage: windows-latest - -variables: - configuration: Release - -strategy: - matrix: - windows: - runtime: win-x64 - linux: - runtime: linux-x64 - macos: - runtime: osx-x64 - -steps: - - - checkout: self - - - task: UseDotNet@2 - displayName: Setup .NET Core - inputs: - version: 5.0.x - - - pwsh: | - dotnet tool install --tool-path . nbgv - ./nbgv cloud -a - displayName: Set build number - - - task: DotNetCoreCLI@2 - displayName: - inputs: - command: build - arguments: --configuration $(configuration) - - - task: DotNetCoreCLI@2 - displayName: - inputs: - command: test - arguments: --configuration $(configuration) - - - task: DotNetCoreCLI@2 - displayName: - inputs: - command: publish - projects: Trash - arguments: > - --runtime $(runtime) - --configuration $(configuration) - --self-contained true - -p:PublishSingleFile=true - -p:PublishTrimmed=true - -p:IncludeNativeLibrariesForSelfExtract=true - \ No newline at end of file