diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d2192b7..f845c41 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -45,13 +45,14 @@ steps: displayName: Create build directory workingDirectory: '$(System.DefaultWorkingDirectory)/' -# - task: DotNetCoreCLI@2 -# inputs: -# command: 'publish' -# publishWebProjects: false -# projects: './src/NSmartProxy.ServerHost/NSmartProxy.ServerHost.csproj' -# arguments: ' --output $(System.DefaultWorkingDirectory)/build/nspserver' -# workingDirectory: '$(System.DefaultWorkingDirectory)/' +- task: DotNetCoreCLI@2 + inputs: + command: 'publish' + publishWebProjects: false + projects: './src/NSmartProxy.ServerHost/NSmartProxy.ServerHost.csproj' + arguments: ' --output $(System.DefaultWorkingDirectory)/build/nspserver' + workingDirectory: '$(System.DefaultWorkingDirectory)/' + zipAfterPublish: false - task: DotNetCoreCLI@2 inputs: @@ -60,13 +61,7 @@ steps: projects: './src/NSmartProxyClient/NSmartProxyClient.csproj' arguments: ' --output $(System.DefaultWorkingDirectory)/build/nspclient' workingDirectory: '$(System.DefaultWorkingDirectory)/' - -- task: Bash@3 - inputs: - targetType: 'inline' - script: | - ls - workingDirectory: '$(System.DefaultWorkingDirectory)/build/nspclient' + zipAfterPublish: false - task: Bash@3