Skip to content

Commit

Permalink
feat: 添加没有自包含的 win-x64 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dissectum committed Sep 17, 2023
1 parent 5d0e667 commit b6d8045
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,14 @@ jobs:
project: [MBA.Cli]
os: [win, linux, osx]
arch: [x64, arm64]
suffix: [-single-cut]
dotnet: [ '7.0' ]
suffix: [-single-cut, -single-runtime-relied]
dotnet: ['7.0']
exclude:
- os: win
arch: arm64
suffix: [-single-runtime-relied]
- os: [linux, osx]
suffix: [-single-runtime-relied]
fail-fast: false
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Platform>x64</Platform>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishDir>..\..\Publish\MBA.Cli-win-x64-single-runtime-relied\</PublishDir>

<Configuration>Release</Configuration>
<SelfContained>false</SelfContained>
<PublishTrimmed>false</PublishTrimmed>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
</Project>

0 comments on commit b6d8045

Please sign in to comment.