We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ad464 commit 077ab89Copy full SHA for 077ab89
v1/dotnet-starter/services/Hello/Hello.cs
@@ -1,8 +1,8 @@
1
-using Application = Nitric.Sdk.Nitric;
+using Application = Nitric.Sdk.Nitric;
2
3
var api = Application.Api("main");
4
5
-api.Get("/hello/:name", context =>
+api.Get("/hello/:name", async context =>
6
{
7
var name = context.Req.PathParams["name"];
8
v1/dotnet-starter/services/Hello/Hello.csproj
@@ -13,6 +13,6 @@
13
</PropertyGroup>
14
15
<ItemGroup>
16
- <PackageReference Include="Nitric.Sdk" Version="1.0.0-a" />
+ <PackageReference Include="Nitric.Sdk" Version="1.0.0" />
17
</ItemGroup>
18
</Project>
0 commit comments