4 Commits
0.6.2 ... 0.6.3

Author SHA1 Message Date
Matt Nadareski
9ffbae1419 Bump version 2024-12-16 14:54:12 -05:00
Matt Nadareski
68fc881c36 Allow symbols to be packed 2024-12-16 14:40:18 -05:00
Matt Nadareski
d8cf671a31 Use explicit endianness read 2024-12-16 14:38:42 -05:00
Matt Nadareski
2c3082d2cf Update packages 2024-12-16 14:37:41 -05:00
4 changed files with 16 additions and 8 deletions

View File

@@ -17,7 +17,10 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Run tests
run: dotnet test
- name: Run publish script
run: ./publish-nix.sh
@@ -25,13 +28,13 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: 'Nuget Package'
path: '*.nupkg'
path: "*.nupkg,*.snupkg"
- name: Upload to rolling
uses: ncipollo/release-action@v1.14.0
with:
allowUpdates: True
artifacts: '*.nupkg'
artifacts: "*.nupkg,*.snupkg"
body: 'Last built commit: ${{ github.sha }}'
name: 'Rolling Release'
prerelease: True

View File

@@ -14,4 +14,7 @@ jobs:
dotnet-version: 9.0.x
- name: Build
run: dotnet build
run: dotnet build
- name: Run tests
run: dotnet test

View File

@@ -44,7 +44,7 @@ namespace SabreTools.Compression.MSZIP
// Validate the header
var header = new BlockHeader();
header.Signature = source.ReadUInt16();
header.Signature = source.ReadUInt16LittleEndian();
if (header.Signature != 0x4B43)
throw new InvalidDataException(nameof(source));

View File

@@ -4,10 +4,12 @@
<!-- Assembly Properties -->
<TargetFrameworks>net20;net35;net40;net452;net462;net472;net48;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>0.6.2</Version>
<Version>0.6.3</Version>
<!-- Package Properties -->
<Authors>Matt Nadareski</Authors>
@@ -26,8 +28,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="SabreTools.IO" Version="1.6.1" />
<PackageReference Include="SabreTools.Models" Version="1.5.7" />
<PackageReference Include="SabreTools.IO" Version="1.6.2" />
<PackageReference Include="SabreTools.Models" Version="1.5.8" />
</ItemGroup>
</Project>