Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SALTWOOD committed Mar 9, 2024
1 parent d9198b9 commit 001ceb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Network/Http/HttpClientRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ public struct HttpClientRequest
return result;
}

public void WriteFrom(Stream stream) => stream.CopyTo(this.Response.OutputStream);

public T ParseTo<T>() where T : class
{
T? result = JsonConvert.DeserializeObject<T>(this.Text);
Expand Down
2 changes: 1 addition & 1 deletion TeraIO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageIcon>TeraIO.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.3-1</Version>
<Version>1.0.4</Version>
<LangVersion>default</LangVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
Expand Down

0 comments on commit 001ceb0

Please sign in to comment.