diff --git a/.azure-pipelines/common-templates/install-tools.yml b/.azure-pipelines/common-templates/install-tools.yml
index 1a1d771bce8..a9ecbe8f605 100644
--- a/.azure-pipelines/common-templates/install-tools.yml
+++ b/.azure-pipelines/common-templates/install-tools.yml
@@ -5,7 +5,12 @@ steps:
- task: UseDotNet@2
displayName: Use .NET SDK
inputs:
- version: 8.x
+ version: 8.x
+
+ - task: UseDotNet@2
+ displayName: Use .NET SDK
+ inputs:
+ version: 6.x
- task: NuGetToolInstaller@1
displayName: Install Nuget
diff --git a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
index bcce1da6292..fded9e51139 100644
--- a/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
+++ b/src/Authentication/Authentication.Core/Microsoft.Graph.Authentication.Core.csproj
@@ -2,9 +2,9 @@
9.0
- netstandard2.0;net8.0;net472
+ netstandard2.0;net6.0;net472
Microsoft.Graph.PowerShell.Authentication.Core
- 2.25.0
+ 2.26.1
true
diff --git a/src/Authentication/Authentication/build-module.ps1 b/src/Authentication/Authentication/build-module.ps1
index 85edb194e06..44d580f4009 100644
--- a/src/Authentication/Authentication/build-module.ps1
+++ b/src/Authentication/Authentication/build-module.ps1
@@ -8,7 +8,7 @@ $ErrorActionPreference = 'Stop'
$ModuleName = "Authentication"
$ModulePrefix = "Microsoft.Graph"
$netStandard = "netstandard2.0"
-$netApp = "net8.0"
+$netApp = "net6.0"
$netFx = "net472"
$copyExtensions = @('.dll', '.pdb')