Skip to content

Commit

Permalink
Merge pull request #175 from fiskaltrust/fix-launcher-memory-usage
Browse files Browse the repository at this point in the history
Reduce memory usage of self-contained build
  • Loading branch information
volllly authored May 27, 2024
2 parents b3c2608 + 00fa7cc commit b8ee2b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines/templates/stages/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ stages:
- ${{ each project in parameters.projects }}:
- pwsh: |
mv ./Directory.build.props ./Directory.Build.props
dotnet publish ./src/${{ project }}/${{ project }}.csproj -c ${{ parameters.config }} -o $(Build.ArtifactStagingDirectory)/drop-$(target) -r $(target) -f net8.0 --self-contained true /p:EnableCompressionInSingleFile=true /p:DebugType=None /p:DebugSymbols=false /p:GenerateRuntimeConfigurationFiles=false -p:PublishSingleFile=true -p:PublishReadyToRun=true
dotnet publish ./src/${{ project }}/${{ project }}.csproj -c ${{ parameters.config }} -o $(Build.ArtifactStagingDirectory)/drop-$(target) -r $(target) -f net8.0 --self-contained true -p:DebugType=None -p:DebugSymbols=false -p:GenerateRuntimeConfigurationFiles=false -p:PublishSingleFile=true
displayName: "[${{ project }}] Publish"
- task: codesigning@2
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "2.0.0-rc.15",
"version": "2.0.0-rc.16",
"releaseBranches": [
"^refs/tags/v\\d+(?:\\.\\d+)*(?:-.*)?$"
]
}
}

0 comments on commit b8ee2b0

Please sign in to comment.