Skip to content

Commit b92150b

Browse files
committed
update cadente version
1 parent f1842f8 commit b92150b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frameworks/CSharp/sisk/sisk-cadente/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
void Host_ContextCreated ( HttpHost sender, HttpHostContext session ) {
1515
var request = session.Request;
16-
16+
1717
if (request.Path == "/plaintext") {
1818
SerializePlainTextResponse ( session.Response );
1919
}
@@ -38,7 +38,7 @@ static void SerializeJsonResponse ( HttpHostContext.HttpResponse response ) {
3838
var contentBytes = JsonSerializer.SerializeToUtf8Bytes ( new {
3939
message = "Hello, World!"
4040
} );
41-
41+
4242
response.Headers.Add ( new HttpHeader ( "Content-Type", "application/json" ) );
4343
response.ResponseStream = new MemoryStream ( contentBytes );
4444
}

frameworks/CSharp/sisk/sisk-cadente/sisk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Sisk.Cadente" Version="0.1.52-alpha3" />
12+
<PackageReference Include="Sisk.Cadente" Version="0.1.64-alpha4" />
1313
</ItemGroup>
1414

1515
</Project>

0 commit comments

Comments
 (0)