Skip to content

Commit

Permalink
update: 动态库也打包进去
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxuuu committed Nov 15, 2024
1 parent d51b35f commit 47c212a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
DOTNETARCH: ${{ matrix.dotnetarch }}
run: |
cd Image2Display/Image2Display
dotnet publish -r $DOTNETOS-$DOTNETARCH --configuration Release -p:PublishSingleFile=true --self-contained true -p:PublishTrimmed=true -p:TrimMode=link
dotnet publish -r $DOTNETOS-$DOTNETARCH --configuration Release -p:PublishSingleFile=true -p:IncludeNativeLibrariesFromSelfExtract=true --self-contained true -p:PublishTrimmed=true -p:TrimMode=link
mkdir pkg
mv bin/Release/net8.0/$DOTNETOS-$DOTNETARCH/publish/* pkg/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
DOTNETARCH: ${{ matrix.dotnetarch }}
run: |
cd Image2Display/Image2Display
dotnet publish -r $DOTNETOS-$DOTNETARCH --configuration Release -p:PublishSingleFile=true --self-contained true -p:PublishTrimmed=true -p:TrimMode=link
dotnet publish -r $DOTNETOS-$DOTNETARCH --configuration Release -p:PublishSingleFile=true -p:IncludeNativeLibrariesFromSelfExtract=true --self-contained true -p:PublishTrimmed=true -p:TrimMode=link
mkdir pkg
mv bin/Release/net8.0/$DOTNETOS-$DOTNETARCH/publish/* pkg/
Expand Down
2 changes: 1 addition & 1 deletion Image2Display/Image2Display/Image2Display.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Authors>chenxuuu</Authors>
<Company>https://github.com/chenxuuu/image2display</Company>
<Description>Image data conversion tool</Description>
<Version>1.1.0.0</Version>
<Version>1.1.2.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 47c212a

Please sign in to comment.