diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4adbda8..94dbb05 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -102,6 +102,7 @@ steps: displayName: Publishing Desktop win-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.DesktopClient.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime win-x64 --output $(Build.ArtifactStagingDirectory)\win-x64' @@ -110,6 +111,7 @@ steps: displayName: Publishing Server win-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.Server.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime win-x64 --output $(Build.ArtifactStagingDirectory)\win-x64' @@ -118,6 +120,7 @@ steps: displayName: Publishing Desktop linux-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.DesktopClient.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime linux-x64 --output $(Build.ArtifactStagingDirectory)\linux-x64' @@ -126,6 +129,7 @@ steps: displayName: Publishing Server linux-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.Server.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime linux-x64 --output $(Build.ArtifactStagingDirectory)\linux-x64' @@ -134,6 +138,7 @@ steps: displayName: Publishing Desktop osx-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.DesktopClient.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime osx-x64 --output $(Build.ArtifactStagingDirectory)\osx-x64' @@ -142,6 +147,7 @@ steps: displayName: Publishing Server osx-x64 inputs: command: 'publish' + zipAfterPublish: false publishWebProjects: false projects: '**/OfCourseIStillLoveYou.Server.csproj' arguments: '-c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true -p:Version=1.0.$(Build.BuildId) --configuration Release --runtime osx-x64 --output $(Build.ArtifactStagingDirectory)\osx-x64'