Skip to content

Commit

Permalink
chore: update to .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimple committed Jan 30, 2024
1 parent 20cac17 commit 93db5c0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set version
id: set-version
Expand All @@ -18,9 +18,9 @@ jobs:
sed -i "s/{{version}}/$(date +'%Y.%m.%d.%H%M')/g" Journal-Limpet/SharedSettings.cs
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

- name: Install Octopus CLI
run: |
Expand Down
2 changes: 1 addition & 1 deletion Journal-Limpet.Shared/Journal-Limpet.Shared.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Journal_Limpet.Shared</RootNamespace>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Journal-Limpet.Tests/Journal-Limpet.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Journal_Limpet.Tests</RootNamespace>

<IsPackable>false</IsPackable>
Expand Down
2 changes: 1 addition & 1 deletion Journal-Limpet/Journal-Limpet.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Journal_Limpet</RootNamespace>
</PropertyGroup>

Expand Down

0 comments on commit 93db5c0

Please sign in to comment.