Skip to content

Commit 3abcfd1

Browse files
Update to ASP.NET Core 7
Update to the stable release of .NET 7.
1 parent 83a7cc2 commit 3abcfd1

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

NuGet.config

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,9 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<add key="aspnet-contrib" value="https://www.myget.org/F/aspnet-contrib/api/v3/index.json" />
65
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
76
</packageSources>
87
<packageSourceMapping>
9-
<packageSource key="aspnet-contrib">
10-
<package pattern="AspNet.Security.OAuth.GitHub" />
11-
</packageSource>
128
<packageSource key="NuGet">
139
<package pattern="*" />
1410
</packageSource>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "7.0.100-rc.2.22477.23",
3+
"version": "7.0.100",
44
"allowPrerelease": false,
55
"rollForward": "latestMajor"
66
}

src/TodoApp/TodoApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<UserSecretsId>TodoApp</UserSecretsId>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="7.0.0-rc.2.22511.68" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-rc.2.22472.11" />
12+
<PackageReference Include="AspNet.Security.OAuth.GitHub" Version="7.0.0" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
1414
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="4.8.4" PrivateAssets="all" />
1515
<PackageReference Include="NodaTime" Version="3.1.5" />
1616
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />

tests/TodoApp.Tests/TodoApp.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="GitHubActionsTestLogger" Version="2.0.1" />
1111
<PackageReference Include="JustEat.HttpClientInterception" Version="3.1.2" />
1212
<PackageReference Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
13-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0-rc.2.22476.2" />
13+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0" />
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
1515
<PackageReference Include="Microsoft.Playwright" Version="1.27.2" />
1616
<PackageReference Include="ReportGenerator" Version="5.1.10" />

0 commit comments

Comments
 (0)