Increment version to 0.11.3 and apply "var" code style

This commit is contained in:
Alex Barney 2020-06-05 22:44:46 -07:00
parent 5dd1ed2687
commit 8c61820e46
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ namespace LibHac
public Calibration(Stream stream)
{
using BinaryReader reader = new BinaryReader(stream, Encoding.Default, true);
using var reader = new BinaryReader(stream, Encoding.Default, true);
stream.Position = 0x0;
Magic = reader.ReadUtf8(0x4);

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<VersionPrefix>0.11.2</VersionPrefix>
<VersionPrefix>0.11.3</VersionPrefix>
<TargetFrameworks>netcoreapp3.0;netstandard2.1</TargetFrameworks>
<LangVersion>8.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

View File

@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>0.11.2</VersionPrefix>
<VersionPrefix>0.11.3</VersionPrefix>
<PathMap Condition=" '$(BuildType)' == 'Release' ">$(MSBuildProjectDirectory)=C:/hactoolnet/</PathMap>
</PropertyGroup>