Skip to content

Commit b4a8458

Browse files
authored
Merge pull request #3171 from microsoftgraph/net-6-rollback
Roll back to .NET 6
2 parents 46dca6a + f2ff056 commit b4a8458

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.azure-pipelines/common-templates/install-tools.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ steps:
55
- task: UseDotNet@2
66
displayName: Use .NET SDK
77
inputs:
8-
version: 8.x
8+
version: 8.x
9+
10+
- task: UseDotNet@2
11+
displayName: Use .NET SDK
12+
inputs:
13+
version: 6.x
914

1015
- task: NuGetToolInstaller@1
1116
displayName: Install Nuget

src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<Import Project="$(MSBuildThisFileDirectory)..\..\..\Repo.props" />
33
<PropertyGroup>
44
<LangVersion>9.0</LangVersion>
5-
<TargetFrameworks>netstandard2.0;net8.0;net472</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net6.0;net472</TargetFrameworks>
66
<RootNamespace>Microsoft.Graph.PowerShell.Authentication.Core</RootNamespace>
7-
<Version>2.25.0</Version>
7+
<Version>2.26.1</Version>
88
<!-- Suppress .NET Target Framework Moniker (TFM) Support Build Warnings -->
99
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
1010
</PropertyGroup>

src/Authentication/Authentication/build-module.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $ErrorActionPreference = 'Stop'
88
$ModuleName = "Authentication"
99
$ModulePrefix = "Microsoft.Graph"
1010
$netStandard = "netstandard2.0"
11-
$netApp = "net8.0"
11+
$netApp = "net6.0"
1212
$netFx = "net472"
1313
$copyExtensions = @('.dll', '.pdb')
1414

0 commit comments

Comments
 (0)