From cc4d586369469a725f79f67e91706fead1e4c916 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Fri, 4 Feb 2022 11:48:18 -0800 Subject: [PATCH] Delete azure yml after pipeline is disabled Azure pipeline needs to be disabled still. fixes #207 --- azure-pipelines.yml | 54 --------------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index f8d745bf..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,54 +0,0 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - -variables: - version: '0.1.9' - -pool: - vmImage: 'windows-latest' - -steps: - -- task: UseDotNet@2 - inputs: - packageType: 'sdk' - version: '5.0.x' - -- task: NuGetToolInstaller@0 - displayName: 'Use latest NuGet' - -- task: NuGetCommand@2 - displayName: 'NuGet Restore' - inputs: - command: 'restore' - restoreSolution: '**/*.sln' - feedsToUse: 'select' - -- task: VSBuild@1 - displayName: 'Build' - inputs: - solution: 'IntelliTect.Analyzer.sln' - clean: true - configuration: 'Release' - msbuildArgs: '/p:Version=$(version)' - -- task: DotNetCoreCLI@2 - displayName: 'Test' - inputs: - command: 'test' - projects: '**/*.Tests.csproj' - -- task: PowerShell@2 - displayName: 'dotnet pack' - inputs: - targetType: 'inline' - script: dotnet pack -p:Version="$(version)-ci-$(Build.BuildId)" -o $(Build.ArtifactStagingDirectory) - pwsh: true - -- task: PublishBuildArtifacts@1 - inputs: - PathtoPublish: '$(Build.ArtifactStagingDirectory)' - ArtifactName: 'drop' - publishLocation: 'Container'