diff options
| author | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-19 21:52:40 +0530 |
|---|---|---|
| committer | DemonKingSwarn <rockingswarn@gmail.com> | 2026-04-19 21:52:40 +0530 |
| commit | 0dc53f2c6a5093344e6188b5510d1505cd3a4a2a (patch) | |
| tree | e04f92287506d12f69b30d9a7cc198b7ddf40deb /hypr-wellbeing.csproj | |
| parent | 7b79ecdd16d0f87b96cb5f16e5a86f8910ce8b40 (diff) | |
| download | hypr-wellbeing-0dc53f2c6a5093344e6188b5510d1505cd3a4a2a.zip hypr-wellbeing-0dc53f2c6a5093344e6188b5510d1505cd3a4a2a.tar.gz | |
chore: made sure the binary is static
Diffstat (limited to 'hypr-wellbeing.csproj')
| -rw-r--r-- | hypr-wellbeing.csproj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hypr-wellbeing.csproj b/hypr-wellbeing.csproj index 9092bd9..9aef20e 100644 --- a/hypr-wellbeing.csproj +++ b/hypr-wellbeing.csproj @@ -1,5 +1,4 @@ <Project Sdk="Microsoft.NET.Sdk"> - <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> @@ -7,11 +6,12 @@ <Nullable>enable</Nullable> <PublishAot>true</PublishAot> <IsAotCompatible>true</IsAotCompatible> - <RuntimeIdentifier>linux-x64</RuntimeIdentifier> - </PropertyGroup> - + <RuntimeIdentifier>linux-musl-x64</RuntimeIdentifier> <!-- musl for static --> + <StaticExecutable>true</StaticExecutable> + <StripSymbols>true</StripSymbols> + <InvariantGlobalization>true</InvariantGlobalization> <!-- removes ICU dep --> + </PropertyGroup> <ItemGroup> - <PackageReference Include="Newtonsoft.json" Version="13.0.4" /> + <PackageReference Include="Newtonsoft.Json" Version="13.0.4" /> </ItemGroup> - </Project> |
