diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 67deca6..4fa8f71 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,7 +1,7 @@ -# ASP.NET -# Build and test ASP.NET projects. -# Add steps that publish symbols, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 +# .NET Desktop +# Build and run tests for .NET Desktop or Windows classic desktop solutions. +# Add steps that publish symbols, save build artifacts, and more: +# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net trigger: - master @@ -10,7 +10,7 @@ pool: vmImage: 'windows-latest' variables: - solution: 'asg_form.sln' + solution: '*.sln' buildPlatform: 'Any CPU' buildConfiguration: 'Release' @@ -21,6 +21,3 @@ steps: inputs: restoreSolution: '$(solution)' -- task: DotNetCoreCLI@2 - inputs: - command: 'build'