File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 52
52
<ItemGroup Label =" Test platform" >
53
53
<PackageReference Update =" BenchmarkDotNet" Version =" 0.14.*" />
54
54
<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 " />
56
56
<PackageReference Update =" Microsoft.TestPlatform.TestHost" Version =" 17.7.*" />
57
57
<PackageReference Update =" Microsoft.TestPlatform.ObjectModel" Version =" 17.7.*" />
58
58
<PackageReference Update =" xunit" Version =" $(XUnitVersion)" />
75
75
<PackageReference Update =" GraphQL.Server.Ui.GraphiQL" Version =" 8.*" />
76
76
<PackageReference Update =" GraphQL.Server.Ui.Playground" Version =" 8.*" />
77
77
<PackageReference Update =" GraphQL.Server.Ui.Voyager" Version =" 8.*" />
78
- <PackageReference Update =" HotChocolate.AspNetCore" Version =" 13 .*" />
78
+ <PackageReference Update =" HotChocolate.AspNetCore" Version =" 14 .*" />
79
79
<PackageReference Update =" Iced" Version =" 1.17.*" />
80
80
<PackageReference Update =" Microsoft.CodeCoverage" Version =" 17.3.*" />
81
81
<PackageReference Update =" Microsoft.Data.Sqlite" Version =" $(MicrosoftExtensionsVersion)" />
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ let main args =
32
32
app.UseGraphQLPlayground " /playground" |> ignore
33
33
app.UseGraphQLVoyager " /voyager" |> ignore
34
34
app.UseRouting () |> ignore
35
- app.UseEndpoints ( fun endpoints -> endpoints.MapBananaCakePop ( PathString " /cakePop " ) |> ignore)
35
+ app.UseEndpoints ( fun endpoints -> endpoints.MapNitroApp ( PathString " /nitro " ) |> ignore)
36
36
|> ignore
37
37
38
38
app
Original file line number Diff line number Diff line change 12
12
"commandName" : " Project" ,
13
13
"dotnetRunMessages" : true ,
14
14
"launchBrowser" : true ,
15
- "launchUrl" : " cakePop " ,
15
+ "launchUrl" : " nitro " ,
16
16
"applicationUrl" : " http://localhost:5092" ,
17
17
"environmentVariables" : {
18
18
"ASPNETCORE_ENVIRONMENT" : " Development"
22
22
"commandName" : " Project" ,
23
23
"dotnetRunMessages" : true ,
24
24
"launchBrowser" : true ,
25
- "launchUrl" : " cakePop " ,
25
+ "launchUrl" : " nitro " ,
26
26
"applicationUrl" : " https://localhost:7122;http://localhost:5092" ,
27
27
"environmentVariables" : {
28
28
"ASPNETCORE_ENVIRONMENT" : " Development"
31
31
"IIS Express" : {
32
32
"commandName" : " IISExpress" ,
33
33
"launchBrowser" : true ,
34
- "launchUrl" : " cakePop " ,
34
+ "launchUrl" : " nitro " ,
35
35
"environmentVariables" : {
36
36
"ASPNETCORE_ENVIRONMENT" : " Development"
37
37
}
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ let main argv =
38
38
app.UseGraphQLPlayground " /playground" |> ignore
39
39
app.UseGraphQLVoyager " /voyager" |> ignore
40
40
app.UseRouting () |> ignore
41
- app.UseEndpoints ( fun endpoints -> endpoints.MapBananaCakePop ( PathString " /cakePop " ) |> ignore)
41
+ app.UseEndpoints ( fun endpoints -> endpoints.MapNitroApp ( PathString " /nitro " ) |> ignore)
42
42
|> ignore
43
43
44
44
app
Original file line number Diff line number Diff line change 25
25
//#if (EnableOpenAPI)
26
26
"launchUrl" : " " ,
27
27
//#else
28
- "launchUrl" : " cakePop " ,
28
+ "launchUrl" : " nitro " ,
29
29
//#endif
30
30
"applicationUrl" : " http://localhost:8086" ,
31
31
"environmentVariables" : {
41
41
//#if (EnableOpenAPI)
42
42
"launchUrl" : " " ,
43
43
//#else
44
- "launchUrl" : " cakePop " ,
44
+ "launchUrl" : " nitro " ,
45
45
//#endif
46
46
"applicationUrl" : " https://localhost:8087;http://localhost:8086" ,
47
47
"environmentVariables" : {
53
53
"commandName" : " IISExpress" ,
54
54
"launchBrowser" : true ,
55
55
//#if (EnableOpenAPI)
56
- "launchUrl" : " cakePop " ,
56
+ "launchUrl" : " nitro " ,
57
57
//#else
58
58
"launchUrl" : " " ,
59
59
//#endif
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ type Startup private () =
50
50
app.UseGraphQLPlayground " /playground" |> ignore
51
51
app.UseGraphQLVoyager " /voyager" |> ignore
52
52
app.UseRouting () |> ignore
53
- app.UseEndpoints ( fun endpoints -> endpoints.MapBananaCakePop ( PathString " /cakePop " ) |> ignore)
53
+ app.UseEndpoints ( fun endpoints -> endpoints.MapNitroApp ( PathString " /nitro " ) |> ignore)
54
54
|> ignore
55
55
56
56
app
You can’t perform that action at this time.
0 commit comments