Skip to content

Commit

Permalink
Update all projects to .net 8
Browse files Browse the repository at this point in the history
  • Loading branch information
DDAndyChen committed Dec 8, 2023
1 parent f1be8d8 commit 038a946
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
source-url: https://nuget.pkg.github.com/deskdirector/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Restore dependencies
run: dotnet restore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
dotnet-version: 8.0.x
source-url: https://nuget.pkg.github.com/deskdirector/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Restore dependencies
run: dotnet restore
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TargetFramework>net7.0</TargetFramework>
<Version>1.0.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Version>1.1.0</Version>
<Nullable>enable</Nullable>
<RootNamespace>DeskDirector.Text.Json.Validation</RootNamespace>
<PackageId>DeskDirector.$(AssemblyName)</PackageId>
Expand Down
4 changes: 2 additions & 2 deletions src/Optional.NewtonsoftJson/Optional.NewtonsoftJson.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<LangVersion>latest</LangVersion>
<TargetFramework>net7.0</TargetFramework>
<Version>1.1.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Version>1.2.0</Version>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>DeskDirector.Text.Json.NewtonsoftJson</RootNamespace>
Expand Down

0 comments on commit 038a946

Please sign in to comment.