Skip to content

Commit

Permalink
Update to net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Feb 13, 2024
1 parent 30ceb26 commit 5671cf6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0

- name: Install .NET 6.0
uses: actions/setup-dotnet@v1
- name: Install .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: Build, Test, Pack, Publish
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2018-2020, Alexandre Mutel
Copyright (c) 2018-2024, Alexandre Mutel
All rights reserved.

Redistribution and use in source and binary forms, with or without modification
Expand Down
2 changes: 1 addition & 1 deletion src/JitBuddy.Tests/JitBuddy.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<StartupObject />
Expand Down
2 changes: 1 addition & 1 deletion src/JitBuddy/JitBuddy.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net461;netstandard2.0;net8.0</TargetFrameworks>
<Description>JitBuddy provides a small helper method to disassemble to a x86/x64 ASM listing the native code generated by the JIT of a managed method.</Description>
<Copyright>Alexandre Mutel</Copyright>
<Authors>Alexandre Mutel</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.100",
"version": "8.0.100",
"rollForward": "latestMinor",
"allowPrerelease": false
}
Expand Down

0 comments on commit 5671cf6

Please sign in to comment.