Downgrade libsodium nuget package to 1.0.18

1.0.18.1 links against too-recent glibc versions. Launcher uses .0 so let's just use that.
This commit is contained in:
Pieter-Jan Briers
2022-03-27 18:25:19 +02:00
parent 1b31ed2baa
commit 5fb83abe39

View File

@@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>SpaceWizards.Sodium.Interop</PackageId>
<Version>1.0.18-beta1</Version>
<Version>1.0.18-beta2</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Native API binding for libsodium.</Description>
<NoWarn>CS1591</NoWarn>
@@ -18,7 +18,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="libsodium" Version="1.0.18.1" />
<PackageReference Include="libsodium" Version="1.0.18" />
</ItemGroup>
</Project>