Skip to content

Commit cc62614

Browse files
Microsoft Graph DevX ToolingMicrosoft Graph DevX Tooling
authored andcommitted
Target net8.0
1 parent 8138197 commit cc62614

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="$(MSBuildThisFileDirectory)..\..\..\Repo.props" />
33
<PropertyGroup>
44
<LangVersion>9.0</LangVersion>
5-
<TargetFrameworks>netstandard2.0;net6.0;net472</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net8.0;net472</TargetFrameworks>
66
<RootNamespace>Microsoft.Graph.PowerShell.Authentication.Core</RootNamespace>
77
<Version>2.25.0</Version>
88
<!-- Suppress .NET Target Framework Moniker (TFM) Support Build Warnings -->
@@ -15,7 +15,7 @@
1515
<ItemGroup>
1616
<PackageReference Include="Azure.Identity" Version="1.13.2" />
1717
<PackageReference Include="Azure.Identity.Broker" Version="1.2.0" />
18-
<PackageReference Include="Microsoft.Graph.Core" Version="3.2.3" />
18+
<PackageReference Include="Microsoft.Graph.Core" Version="3.2.2" />
1919
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2020
<PackageReference Include="System.Text.Json" Version="8.0.5" />
2121
</ItemGroup>

src/Authentication/Authentication.Test/Microsoft.Graph.Authentication.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net472</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net472</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
<Version>2.25.0</Version>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
99
<!-- As described in this post https://devblogs.microsoft.com/powershell/depending-on-the-right-powershell-nuget-package-in-your-net-project, reference the SDK for dotnetcore-->
10-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.5.0" PrivateAssets="all" Condition="'$(TargetFramework)' == 'net6.0'" />
10+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.5.0" PrivateAssets="all" Condition="'$(TargetFramework)' == 'net8.0'" />
1111
<PackageReference Include="Moq" Version="4.20.70" />
1212
<PackageReference Include="xunit" Version="2.4.2" />
1313
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">

src/Authentication/Authentication/build-module.ps1

Lines changed: 1 addition & 1 deletion
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 = "net6.0"
11+
$netApp = "net8.0"
1212
$netFx = "net472"
1313
$copyExtensions = @('.dll', '.pdb')
1414

0 commit comments

Comments
 (0)