Skip to content

Commit

Permalink
Updated Microsoft.NET.Test.Sdk to 17.12.0 and `HotChocolate.AspNe…
Browse files Browse the repository at this point in the history
…tCore` to `14.*`
  • Loading branch information
xperiandri committed Nov 20, 2024
1 parent c4354b5 commit 51c665b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<ItemGroup Label="Test platform">
<PackageReference Update="BenchmarkDotNet" Version="0.14.*" />
<PackageReference Update="BenchmarkDotNet.Annotations" Version="0.*" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Update="Microsoft.TestPlatform.TestHost" Version="17.7.*" />
<PackageReference Update="Microsoft.TestPlatform.ObjectModel" Version="17.7.*" />
<PackageReference Update="xunit" Version="$(XUnitVersion)" />
Expand All @@ -75,7 +75,7 @@
<PackageReference Update="GraphQL.Server.Ui.GraphiQL" Version="8.*" />
<PackageReference Update="GraphQL.Server.Ui.Playground" Version="8.*" />
<PackageReference Update="GraphQL.Server.Ui.Voyager" Version="8.*" />
<PackageReference Update="HotChocolate.AspNetCore" Version="13.*" />
<PackageReference Update="HotChocolate.AspNetCore" Version="14.*" />
<PackageReference Update="Iced" Version="1.17.*" />
<PackageReference Update="Microsoft.CodeCoverage" Version="17.3.*" />
<PackageReference Update="Microsoft.Data.Sqlite" Version="$(MicrosoftExtensionsVersion)" />
Expand Down
2 changes: 1 addition & 1 deletion samples/chat-app/server/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let main args =
app.UseGraphQLPlayground "/playground" |> ignore
app.UseGraphQLVoyager "/voyager" |> ignore
app.UseRouting () |> ignore
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
|> ignore

app
Expand Down
6 changes: 3 additions & 3 deletions samples/chat-app/server/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "cakePop",
"launchUrl": "nitro",
"applicationUrl": "http://localhost:5092",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
Expand All @@ -22,7 +22,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "cakePop",
"launchUrl": "nitro",
"applicationUrl": "https://localhost:7122;http://localhost:5092",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
Expand All @@ -31,7 +31,7 @@
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "cakePop",
"launchUrl": "nitro",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down
2 changes: 1 addition & 1 deletion samples/relay-book-store/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let main argv =
app.UseGraphQLPlayground "/playground" |> ignore
app.UseGraphQLVoyager "/voyager" |> ignore
app.UseRouting () |> ignore
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
|> ignore

app
Expand Down
6 changes: 3 additions & 3 deletions samples/star-wars-api/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
//#if (EnableOpenAPI)
"launchUrl": "",
//#else
"launchUrl": "cakePop",
"launchUrl": "nitro",
//#endif
"applicationUrl": "http://localhost:8086",
"environmentVariables": {
Expand All @@ -41,7 +41,7 @@
//#if (EnableOpenAPI)
"launchUrl": "",
//#else
"launchUrl": "cakePop",
"launchUrl": "nitro",
//#endif
"applicationUrl": "https://localhost:8087;http://localhost:8086",
"environmentVariables": {
Expand All @@ -53,7 +53,7 @@
"commandName": "IISExpress",
"launchBrowser": true,
//#if (EnableOpenAPI)
"launchUrl": "cakePop",
"launchUrl": "nitro",
//#else
"launchUrl": "",
//#endif
Expand Down
2 changes: 1 addition & 1 deletion samples/star-wars-api/Startup.fs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type Startup private () =
app.UseGraphQLPlayground "/playground" |> ignore
app.UseGraphQLVoyager "/voyager" |> ignore
app.UseRouting () |> ignore
app.UseEndpoints (fun endpoints -> endpoints.MapBananaCakePop (PathString "/cakePop") |> ignore)
app.UseEndpoints (fun endpoints -> endpoints.MapNitroApp (PathString "/nitro") |> ignore)
|> ignore

app
Expand Down

0 comments on commit 51c665b

Please sign in to comment.