Skip to content

Commit 51c665b

Browse files
committed
Updated Microsoft.NET.Test.Sdk to 17.12.0 and HotChocolate.AspNetCore to 14.*
1 parent c4354b5 commit 51c665b

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<ItemGroup Label="Test platform">
5353
<PackageReference Update="BenchmarkDotNet" Version="0.14.*" />
5454
<PackageReference Update="BenchmarkDotNet.Annotations" Version="0.*" />
55-
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.11.1" />
55+
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.12.0" />
5656
<PackageReference Update="Microsoft.TestPlatform.TestHost" Version="17.7.*" />
5757
<PackageReference Update="Microsoft.TestPlatform.ObjectModel" Version="17.7.*" />
5858
<PackageReference Update="xunit" Version="$(XUnitVersion)" />
@@ -75,7 +75,7 @@
7575
<PackageReference Update="GraphQL.Server.Ui.GraphiQL" Version="8.*" />
7676
<PackageReference Update="GraphQL.Server.Ui.Playground" Version="8.*" />
7777
<PackageReference Update="GraphQL.Server.Ui.Voyager" Version="8.*" />
78-
<PackageReference Update="HotChocolate.AspNetCore" Version="13.*" />
78+
<PackageReference Update="HotChocolate.AspNetCore" Version="14.*" />
7979
<PackageReference Update="Iced" Version="1.17.*" />
8080
<PackageReference Update="Microsoft.CodeCoverage" Version="17.3.*" />
8181
<PackageReference Update="Microsoft.Data.Sqlite" Version="$(MicrosoftExtensionsVersion)" />

samples/chat-app/server/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ let main args =
3232
app.UseGraphQLPlayground "/playground" |> ignore
3333
app.UseGraphQLVoyager "/voyager" |> ignore
3434
app.UseRouting () |> ignore
35-
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
35+
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
3636
|> ignore
3737

3838
app

samples/chat-app/server/Properties/launchSettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"commandName": "Project",
1313
"dotnetRunMessages": true,
1414
"launchBrowser": true,
15-
"launchUrl": "cakePop",
15+
"launchUrl": "nitro",
1616
"applicationUrl": "http://localhost:5092",
1717
"environmentVariables": {
1818
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -22,7 +22,7 @@
2222
"commandName": "Project",
2323
"dotnetRunMessages": true,
2424
"launchBrowser": true,
25-
"launchUrl": "cakePop",
25+
"launchUrl": "nitro",
2626
"applicationUrl": "https://localhost:7122;http://localhost:5092",
2727
"environmentVariables": {
2828
"ASPNETCORE_ENVIRONMENT": "Development"
@@ -31,7 +31,7 @@
3131
"IIS Express": {
3232
"commandName": "IISExpress",
3333
"launchBrowser": true,
34-
"launchUrl": "cakePop",
34+
"launchUrl": "nitro",
3535
"environmentVariables": {
3636
"ASPNETCORE_ENVIRONMENT": "Development"
3737
}

samples/relay-book-store/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let main argv =
3838
app.UseGraphQLPlayground "/playground" |> ignore
3939
app.UseGraphQLVoyager "/voyager" |> ignore
4040
app.UseRouting () |> ignore
41-
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
41+
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
4242
|> ignore
4343

4444
app

samples/star-wars-api/Properties/launchSettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
//#if (EnableOpenAPI)
2626
"launchUrl": "",
2727
//#else
28-
"launchUrl": "cakePop",
28+
"launchUrl": "nitro",
2929
//#endif
3030
"applicationUrl": "http://localhost:8086",
3131
"environmentVariables": {
@@ -41,7 +41,7 @@
4141
//#if (EnableOpenAPI)
4242
"launchUrl": "",
4343
//#else
44-
"launchUrl": "cakePop",
44+
"launchUrl": "nitro",
4545
//#endif
4646
"applicationUrl": "https://localhost:8087;http://localhost:8086",
4747
"environmentVariables": {
@@ -53,7 +53,7 @@
5353
"commandName": "IISExpress",
5454
"launchBrowser": true,
5555
//#if (EnableOpenAPI)
56-
"launchUrl": "cakePop",
56+
"launchUrl": "nitro",
5757
//#else
5858
"launchUrl": "",
5959
//#endif

samples/star-wars-api/Startup.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type Startup private () =
5050
app.UseGraphQLPlayground "/playground" |> ignore
5151
app.UseGraphQLVoyager "/voyager" |> ignore
5252
app.UseRouting () |> ignore
53-
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
53+
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
5454
|> ignore
5555

5656
app

0 commit comments

Comments
 (0)