Skip to content

Commit 6230a7b

Browse files
committed
Update to 1.1.0-alpha1
1 parent 59a4f72 commit 6230a7b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Src/GBX.NET/BlockInfo/BlockInfoReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public override string ReadString()
1212
{
1313
var index = ReadUInt16();
1414

15-
if (index != 0 && strings.TryGetValue(index, out string str))
15+
if (index != 0 && strings.TryGetValue(index, out string? str))
1616
{
1717
return str;
1818
}

Src/GBX.NET/GBX.NET.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Nullable>enable</Nullable>
1212
<ImplicitUsings>enable</ImplicitUsings>
1313

14-
<Version>1.0.1</Version>
14+
<Version>1.1.0-alpha1</Version>
1515
<PackageReleaseNotes></PackageReleaseNotes>
1616

1717
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net462</TargetFrameworks>
@@ -75,6 +75,10 @@
7575
<AdditionalFiles Include="Resources/CollectionID.txt" />
7676
</ItemGroup>
7777

78+
<ItemGroup>
79+
<Content Include="Engines\Plug\CPlugVisual_New.cs" />
80+
</ItemGroup>
81+
7882
<ItemGroup>
7983
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
8084
<PackageReference Include="TmEssentials" Version="2.3.1" />

0 commit comments

Comments
 (0)