shrink build package (--self-contain false)

This commit is contained in:
Alex
2025-09-02 15:00:32 -07:00
parent c609e35b8b
commit afc08d72aa
3 changed files with 4 additions and 5 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
<img height="600" alt="image" src="https://github.com/user-attachments/assets/2a06c9b4-6b37-43eb-a7f5-3b2d4577c736" /> <img height="600" alt="image" src="https://github.com/user-attachments/assets/2a06c9b4-6b37-43eb-a7f5-3b2d4577c736" />
This is a rewrite of [WacK-Repackager](https://github.com/muskit/WacK-Repackager) to work with the upcoming Saturn project. This is a rewrite of [WacK-Repackager](https://github.com/muskit/WacK-Repackager) to work with the upcoming Saturn project.
**Requires [.NET 9.0+](https://dotnet.microsoft.com/en-us/download) to be installed.**
Head over to [HOWTO](HOWTO.md) for required data preparation. Head over to [HOWTO](HOWTO.md) for required data preparation.
+2 -2
View File
@@ -5,8 +5,8 @@ cd $(dirname $0)
app_version=MercuryConverter-v$(cat src/Assets/version) app_version=MercuryConverter-v$(cat src/Assets/version)
# create builds # create builds
dotnet publish src --runtime linux-x64 -c Release -p:PublishSingleFile=True -o "./builds/$app_version-linux-x64" dotnet publish src --runtime linux-x64 -c Release -p:PublishSingleFile=True --self-contained false -o "./builds/$app_version-linux-x64"
dotnet publish src --runtime win-x64 -c Release -p:PublishSingleFile=True -o "./builds/$app_version-win-x64" dotnet publish src --runtime win-x64 -c Release -p:PublishSingleFile=True --self-contained false -o "./builds/$app_version-win-x64"
# package builds # package builds
cd builds cd builds
-1
View File
@@ -24,7 +24,6 @@
<PackageReference Include="DialogHost.Avalonia" Version="0.9.3" /> <PackageReference Include="DialogHost.Avalonia" Version="0.9.3" />
<PackageReference Include="ffmpegcore" Version="5.2.0" /> <PackageReference Include="ffmpegcore" Version="5.2.0" />
<PackageReference Include="ini-parser" Version="2.5.2" /> <PackageReference Include="ini-parser" Version="2.5.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>