From 747fa227a11c38dfe7fa12670e62711d6f429487 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Sat, 1 Nov 2025 21:58:34 -0400 Subject: [PATCH] woawzies --- azure-pipeline.yaml | 49 --------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 azure-pipeline.yaml diff --git a/azure-pipeline.yaml b/azure-pipeline.yaml deleted file mode 100644 index e7c6ded..0000000 --- a/azure-pipeline.yaml +++ /dev/null @@ -1,49 +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 - -trigger: - batch: true - branches: - include: - - refs/tags/* - -pool: - vmImage: 'ubuntu-latest' - -steps: - -- task: gitversion/setup@0 - inputs: - versionSpec: '5.6.0' - -- task: gitversion/execute@0 - displayName: 'Git Version' - -- task: DotNetCoreCLI@2 - inputs: - command: 'restore' - projects: '**/*.csproj' - feedsToUse: 'select' - -- task: DotNetCoreCLI@2 - inputs: - command: 'build' - projects: '**/*.csproj' - -- task: DotNetCoreCLI@2 - inputs: - command: 'pack' - packagesToPack: '**/*.csproj' - includesymbols: true - includesource: true - versioningScheme: 'byEnvVar' - versionEnvVar: 'GitVersion.NuGetVersion' - -- task: NuGetCommand@2 - inputs: - command: 'push' - packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' - nuGetFeedType: 'external' - publishFeedCredentials: 'PoweredSoftNuget'