Skip to content

Commit 9326f7c

Browse files
Update to .NET 10, libsodium 1.0.22, System.Management.Automation 7.6.1
1 parent e6359c6 commit 9326f7c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

PSModule/Sodium.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<AssemblyName>PSModule.Sodium</AssemblyName>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="System.Management.Automation" Version="7.4.0" PrivateAssets="All" />
11-
<PackageReference Include="libsodium" Version="1.0.20.1" />
10+
<PackageReference Include="System.Management.Automation" Version="7.6.1" PrivateAssets="All" />
11+
<PackageReference Include="libsodium" Version="1.0.22" />
1212
</ItemGroup>
1313

1414
</Project>

PSModule/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ try {
1919
throw "dotnet publish failed for runtime '$_'."
2020
}
2121

22-
$source = "$PSScriptRoot/bin/Release/net8.0/$_/publish"
22+
$source = "$PSScriptRoot/bin/Release/net10.0/$_/publish"
2323
$destination = "$PSScriptRoot/../src/libs/$_"
2424
Copy-Item -Path $source -Destination $destination -Recurse -Force
2525
}

0 commit comments

Comments
 (0)