Skip to content

Commit 45f4e80

Browse files
Upgrade to .NET 8
1 parent 7ae1c88 commit 45f4e80

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup .NET
1212
uses: actions/setup-dotnet@v3
1313
with:
14-
dotnet-version: 6.0.x
14+
dotnet-version: 8.0.x
1515

1616
- name: Restore
1717
run: dotnet restore

.github/workflows/CodeQL.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup .NET
5454
uses: actions/setup-dotnet@v3
5555
with:
56-
dotnet-version: 6.0.x
56+
dotnet-version: 8.0.x
5757

5858
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5959
# If this step fails, then you should remove it and run the build manually (see below)

.github/workflows/Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: write
1616
env:
17-
targets: linux-x64 linux-arm64 linux-arm osx-x64 osx-arm64 win-x64 win-arm64 win-arm
17+
targets: linux-x64 linux-arm64 linux-arm osx-x64 osx-arm64 win-x64 win-arm64
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323

2424
- uses: actions/setup-dotnet@v3
2525
with:
26-
dotnet-version: 6.0.x
26+
dotnet-version: 8.0.x
2727

2828
- name: Run tests
2929
run: dotnet test

.github/workflows/Sonar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v3
1717
with:
18-
dotnet-version: 6.0.x
18+
dotnet-version: 8.0.x
1919

2020
- name: Install Sonar Scanner
2121
run: dotnet tool install --global dotnet-sonarscanner

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Lightweight tools for load testing web applications, written in C#
1919

2020
### Install as a .NET Global Tool
2121

22-
`~$ dotnet tool install --global LoadTestToolbox` (requires .NET 6 SDK)
22+
`~$ dotnet tool install --global LoadTestToolbox` (requires .NET 8 SDK)
2323

2424
## Usage
2525

src/LoadTestToolbox.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>1.1.0</Version>
3+
<Version>2.0.0</Version>
44
<OutputType>Exe</OutputType>
55
<PackAsTool>true</PackAsTool>
66
<AssemblyName>ltt</AssemblyName>
7-
<TargetFramework>net6.0</TargetFramework>
7+
<TargetFramework>net8.0</TargetFramework>
88
<Description>Lightweight tools for load testing web applications</Description>
99
<Authors>ecoAPM LLC</Authors>
1010
<Company>ecoAPM LLC</Company>
@@ -23,8 +23,8 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
27-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
26+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
27+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
2828
<PackageReference Include="LiveChartsCore.SkiaSharpView" Version="2.0.0-beta.700" />
2929
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="7.3.0" />
3030
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.6" />

test/LoadTestToolbox.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
</PropertyGroup>

0 commit comments

Comments
 (0)