Skip to content

Commit

Permalink
Merge pull request #975 from godaddy/csharp-securememory-update
Browse files Browse the repository at this point in the history
[csharp securememory] migrate to .NET 6.0
  • Loading branch information
aka-bo authored Oct 26, 2023
2 parents 613dfd9 + 4449ae4 commit 2292bcc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ jobs:
needs: csharp-logging
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:7.0
image: mcr.microsoft.com/dotnet/sdk:6.0
options: --ulimit core=-1 --ulimit memlock=-1:-1
steps:
- name: Checkout the repository
Expand All @@ -290,7 +290,6 @@ jobs:
- name: Build
run: |
cd csharp/SecureMemory
./scripts/install-dotnet-3.1.sh
./scripts/clean.sh
./scripts/build.sh
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion csharp/SecureMemory/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>0.2.3</Version>
<Version>0.2.4</Version>
</PropertyGroup>
</Project>
12 changes: 6 additions & 6 deletions csharp/SecureMemory/SecureMemory.Tests/SecureMemory.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>GoDaddy.Asherah.SecureMemory.Tests</RootNamespace>
<CodeAnalysisRuleSet>../StyleCopCustom.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -10,14 +10,14 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="Moq" Version="4.18.4" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PackageReference Include="coverlet.msbuild" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 2292bcc

Please sign in to comment.