File tree 6 files changed +12
-15
lines changed
src/MongoDB.EntityFrameworkCore
MongoDB.EntityFrameworkCore.FunctionalTests
MongoDB.EntityFrameworkCore.UnitTests
6 files changed +12
-15
lines changed Original file line number Diff line number Diff line change @@ -434,14 +434,10 @@ axes:
434
434
- id : target_runtime
435
435
display_name : Target .net runtime
436
436
values :
437
- - id : " net60 "
438
- display_name : " net 6 .0"
437
+ - id : " net80 "
438
+ display_name : " net 8 .0"
439
439
variables :
440
- TARGET_RUNTIME : " net60"
441
- - id : " net70"
442
- display_name : " net 7.0"
443
- variables :
444
- TARGET_RUNTIME : " net70"
440
+ TARGET_RUNTIME : " net80"
445
441
446
442
- id : build-target
447
443
display_name : CI build target
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ mkdir -p "$DOTNET_SDK_PATH"
7
7
if [[ $OS =~ [Ww]indows.* ]]; then
8
8
echo " Downloading Windows .NET SDK installer into $DOTNET_SDK_PATH folder..."
9
9
curl -Lfo " $DOTNET_SDK_PATH " /dotnet-install.ps1 https://dot.net/v1/dotnet-install.ps1
10
- echo " Installing .NET 7 .0 SDK..."
11
- powershell.exe " $DOTNET_SDK_PATH " /dotnet-install.ps1 -Channel 7 .0 -InstallDir " $DOTNET_SDK_PATH " -NoPath
10
+ echo " Installing .NET 8 .0 SDK..."
11
+ powershell.exe " $DOTNET_SDK_PATH " /dotnet-install.ps1 -Channel 8 .0 -InstallDir " $DOTNET_SDK_PATH " -NoPath
12
12
else
13
13
echo " Downloading .NET SDK installer into $DOTNET_SDK_PATH folder..."
14
14
curl -Lfo " $DOTNET_SDK_PATH " /dotnet-install.sh https://dot.net/v1/dotnet-install.sh
15
- echo " Installing .NET 7 .0 SDK..."
16
- bash " $DOTNET_SDK_PATH " /dotnet-install.sh --channel 7 .0 --install-dir " $DOTNET_SDK_PATH " --no-path
15
+ echo " Installing .NET 8 .0 SDK..."
16
+ bash " $DOTNET_SDK_PATH " /dotnet-install.sh --channel 8 .0 --install-dir " $DOTNET_SDK_PATH " --no-path
17
17
fi
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 7 .0.0" ,
3
+ "version" : " 8 .0.0" ,
4
4
"rollForward" : " latestMajor" ,
5
5
"allowPrerelease" : false
6
6
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net6 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
4
4
<Description >Official MongoDB supported driver for MongoDB. See https://www.mongodb.com/docs/drivers/csharp/ for more details.</Description >
5
5
<IsPackable >true</IsPackable >
6
6
<PackageId >MongoDB.EntityFrameworkCore</PackageId >
15
15
<InternalsVisibleTo Include =" MongoDB.EntityFrameworkCore.UnitTests" />
16
16
<PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 7.0.15" />
17
17
<PackageReference Include =" MongoDB.Driver" Version =" 2.23.1" />
18
+ <PackageReference Remove =" Microsoft.SourceLink.GitHub" />
18
19
</ItemGroup >
19
20
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net7 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
4
4
<ImplicitUsings >enable</ImplicitUsings >
5
5
<Nullable >enable</Nullable >
6
6
<IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments