aboutsummaryrefslogtreecommitdiff
path: root/hypr-wellbeing.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'hypr-wellbeing.csproj')
-rw-r--r--hypr-wellbeing.csproj12
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>