Skip to content

Commit ff42a1c

Browse files
committed
Removed .net 6 as it's end of support last november.
1 parent 26ff1df commit ff42a1c

File tree

6 files changed

+3
-23
lines changed

6 files changed

+3
-23
lines changed

.github/workflows/build-linux.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ jobs:
1010
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v4
15-
with:
16-
dotnet-version: 6.x
1713
- name: Setup .NET Core 8
1814
uses: actions/setup-dotnet@v4
1915
with:

.github/workflows/build-osx.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ jobs:
1010
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v4
15-
with:
16-
dotnet-version: 6.x
1713
- name: Setup .NET Core 8
1814
uses: actions/setup-dotnet@v4
1915
with:

.github/workflows/build-windows.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ jobs:
1010
uses: actions/checkout@v4
1111
with:
1212
fetch-depth: 0
13-
- name: Setup .NET Core 6
14-
uses: actions/setup-dotnet@v4
15-
with:
16-
dotnet-version: 6.x
1713
- name: Setup .NET Core 8
1814
uses: actions/setup-dotnet@v4
1915
with:

src/Platforms/Exceptionless.MessagePack/Exceptionless.MessagePack.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFramework>netstandard2.0</TargetFramework>
66
</PropertyGroup>
77
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
8-
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
8+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Package">

src/Platforms/Exceptionless.Windows/Exceptionless.Windows.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="..\..\..\build\common.props" />
33

44
<PropertyGroup>
5-
<TargetFrameworks>net6.0-windows;net8.0-windows;net462</TargetFrameworks>
5+
<TargetFrameworks>net8.0-windows;net462</TargetFrameworks>
66
</PropertyGroup>
77

88
<PropertyGroup Label="Package">
@@ -32,10 +32,6 @@
3232
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
3333
</ItemGroup>
3434

35-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' " Label="Build">
36-
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
37-
</PropertyGroup>
38-
3935
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-windows' " Label="Build">
4036
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
4137
</PropertyGroup>

src/Platforms/Exceptionless.Wpf/Exceptionless.Wpf.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="..\..\..\build\common.props" />
33

44
<PropertyGroup>
5-
<TargetFrameworks>net6.0-windows;net8.0-windows;net462</TargetFrameworks>
5+
<TargetFrameworks>net8.0-windows;net462</TargetFrameworks>
66
</PropertyGroup>
77

88
<PropertyGroup Label="Package">
@@ -32,10 +32,6 @@
3232
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
3333
</ItemGroup>
3434

35-
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' " Label="Build">
36-
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
37-
</PropertyGroup>
38-
3935
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0-windows' " Label="Build">
4036
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
4137
</PropertyGroup>

0 commit comments

Comments
 (0)