From 19bd8d74cdc1a3f631660206a846b705f5b09c9e Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sat, 20 Jul 2019 18:42:33 -0400 Subject: [PATCH] Try adding build YAML file --- Weather/Models/azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Weather/Models/azure-pipelines.yml diff --git a/Weather/Models/azure-pipelines.yml b/Weather/Models/azure-pipelines.yml new file mode 100644 index 0000000..5063722 --- /dev/null +++ b/Weather/Models/azure-pipelines.yml @@ -0,0 +1,14 @@ +variables: + Major: '1' + Minor: '0' + Patch: '0' + +steps: +- task: NuGetCommand@2 + inputs: + command: pack + packagesToPack: '**/*.csproj' + versioningScheme: byPrereleaseNumber + majorVersion: '$(Major)' + minorVersion: '$(Minor)' + patchVersion: '$(Patch)'