Skip to content

Commit

Permalink
uptick, minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jefffhaynes committed May 14, 2023
1 parent 896a96f commit f16adc6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions BinarySerializer.Test/BinarySerializer.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BinarySerializer\BinarySerializer.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion BinarySerializer.Test/Misc/StructTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void TestStruct()
#if TESTASYNC
Assert.ThrowsException<AggregateException>(() => Roundtrip(expected));
#else
Assert.ThrowsException<NotSupportedException>(() => Roundtrip(expected));
Assert.ThrowsException<InvalidOperationException>(() => Roundtrip(expected));
#endif
}
}
Expand Down
8 changes: 4 additions & 4 deletions BinarySerializer/BinarySerializer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<Description>A declarative serialization framework for controlling formatting of data using field bindings.</Description>
<AssemblyName>BinarySerializer</AssemblyName>
<PackageTags>Serialization;Serializer;Binary;Format;Protocol</PackageTags>
<PackageReleaseNotes>Adds option to allow incomplete objects</PackageReleaseNotes>
<PackageReleaseNotes>Adds control of bit ordering</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/jefffhaynes/BinarySerializer</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jefffhaynes/BinarySerializer</RepositoryUrl>
<AssemblyVersion>8.6.3.3</AssemblyVersion>
<FileVersion>8.6.3.3</FileVersion>
<Version>8.6.3.3</Version>
<AssemblyVersion>8.6.4</AssemblyVersion>
<FileVersion>8.6.4</FileVersion>
<Version>8.6.4</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Jeff Haynes</Authors>
<Company />
Expand Down

0 comments on commit f16adc6

Please sign in to comment.