diff --git a/WebApiExtended.NETCore/WebApiExtended.NETCore.csproj b/WebApiExtended.NETCore/WebApiExtended.NETCore.csproj index 6350d02..111df43 100644 --- a/WebApiExtended.NETCore/WebApiExtended.NETCore.csproj +++ b/WebApiExtended.NETCore/WebApiExtended.NETCore.csproj @@ -1,6 +1,7 @@  netcoreapp2.1 + true true PubComp.Caching.WebApiExtended.NETCore PubComp.Caching.WebApiExtended.NETCore @@ -9,7 +10,7 @@ 4.1.1.0 - + @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..81fc9ba --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,34 @@ +# ASP.NET Core (.NET Framework) +# Build and test ASP.NET Core projects targeting the full .NET Framework. +# Add steps that publish symbols, save build artifacts, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +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)' + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)' + vsVersion: latest + +- task: VSTest@2 + inputs: + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)'