Skip to content

Commit ac03b11

Browse files
committed
Update to .NET 8 RC2
1 parent 4eebd1a commit ac03b11

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

NuGet.config

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="Npgsql-nightly" value="https://www.myget.org/F/npgsql-vnext/api/v3/index.json" />
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6+
</packageSources>
7+
</configuration>

package-versions.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
<EntityFrameworkCoreFrozenVersion>8.0.0-rc.1.*</EntityFrameworkCoreFrozenVersion>
2727

2828
<!-- Non-published dependencies (these are safe to update, won't cause a breaking change) -->
29-
<AspNetCoreVersion>8.0.0-rc.1.*</AspNetCoreVersion>
30-
<EntityFrameworkCoreVersion>8.0.0-rc.1.*</EntityFrameworkCoreVersion>
31-
<NpgsqlVersion>8.0.0-rc.1</NpgsqlVersion>
29+
<AspNetCoreVersion>8.0.0-rc.2.*</AspNetCoreVersion>
30+
<EntityFrameworkCoreVersion>8.0.0-rc.2.*</EntityFrameworkCoreVersion>
31+
<NpgsqlVersion>8.0.0-rc.2</NpgsqlVersion>
3232
<SystemTextJsonVersion>$(AspNetCoreVersion)</SystemTextJsonVersion>
3333
</PropertyGroup>
3434

test/TestBuildingBlocks/TestBuildingBlocks.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(AspNetCoreVersion)" />
1818
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="$(EntityFrameworkCoreVersion)" />
1919
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
20+
<PackageReference Include="Npgsql" Condition="'$(TargetFramework)' == 'net8.0'" Version="8.0.0-rtm-ci.20231012T145719" />
2021
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(NpgsqlVersion)" />
2122
<PackageReference Include="xunit" Version="$(XunitVersion)" />
2223
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" PrivateAssets="All" />

0 commit comments

Comments
 (0)