Skip to content

Commit 3575efe

Browse files
authored
Remove .net 6 from target frameworks (#2216)
* Remove .net 6 from target framework * Remove .net 6 from pipelines * Increment version
1 parent f9c3e12 commit 3575efe

File tree

7 files changed

+6
-16
lines changed

7 files changed

+6
-16
lines changed

.azure/pipelines/release.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,6 @@ extends:
9595
echo $(VersionSuffix)
9696
echo $(MSBuildProperties)
9797
displayName: Print VersionSuffix and MSBuildProperties
98-
- task: UseDotNet@2
99-
displayName: Add 6.x
100-
inputs:
101-
version: 6.x
102-
performMultiLevelLookup: true
103-
- task: UseDotNet@2
104-
displayName: Add 7.x
105-
inputs:
106-
version: 7.x
107-
performMultiLevelLookup: true
10898
- task: UseDotNet@2
10999
displayName: Add 8.x
110100
inputs:

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false # Disable the auto cancelling of all in-progress and queued jobs in the matrix if any job in the matrix fails.
1616
matrix:
17-
dotnet-version: [ '9.0.x', '8.0.x', '6.0.x' ]
17+
dotnet-version: [ '9.0.x', '8.0.x' ]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: dorny/paths-filter@v2

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false # Disable the auto cancelling of all in-progress and queued jobs in the matrix if any job in the matrix fails.
1616
matrix:
17-
dotnet-version: [ '9.0.x', '8.0.x', '6.0.x']
17+
dotnet-version: [ '9.0.x', '8.0.x' ]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: dorny/paths-filter@v2

src/Microsoft.Azure.SignalR.Common/Microsoft.Azure.SignalR.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<PropertyGroup>
9-
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net462;</TargetFrameworks>
9+
<TargetFrameworks>netstandard2.0;net8.0;net462;</TargetFrameworks>
1010
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1111
</PropertyGroup>
1212

src/Microsoft.Azure.SignalR.Management/Microsoft.Azure.SignalR.Management.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<PropertyGroup>
9-
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
9+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
1010
</PropertyGroup>
1111

1212
<ItemGroup>

src/Microsoft.Azure.SignalR/Microsoft.Azure.SignalR.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<RootNamespace>Microsoft.Azure.SignalR</RootNamespace>
88
</PropertyGroup>
99
<PropertyGroup>
10-
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
10+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<!-- major.minor.patch[.build] -->
4-
<VersionPrefix>1.31.0</VersionPrefix>
4+
<VersionPrefix>1.32.0</VersionPrefix>
55
<VersionPrefix Condition="'$(MSBuildProjectName)' == 'Microsoft.Azure.SignalR.Emulator'">1.6.3</VersionPrefix>
66
<VersionPrefix Condition="'$(MSBuildProjectName)' == 'Microsoft.Azure.SignalR.Serverless.Protocols'">1.11.2</VersionPrefix>
77
<!-- Alphanumberic(+hyphen) string for PackageVersion and InformationalVersion-->

0 commit comments

Comments
 (0)