Skip to content

Commit c40d6f8

Browse files
committed
fix: final
1 parent 365e0e7 commit c40d6f8

File tree

4 files changed

+30
-19
lines changed

4 files changed

+30
-19
lines changed

.github/workflows/publish.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,7 @@ jobs:
4747
run: dotnet test -c Release --no-build --verbosity normal
4848

4949
- name: Pack
50-
run: |
51-
PACK_OPTIONS="/p:Authors=ikpil"
52-
PACK_OPTIONS+=" /p:Description=\"Small & portable byte-aligned LZ77 compression for C#\""
53-
PACK_OPTIONS+=" /p:RepositoryType=git"
54-
PACK_OPTIONS+=" /p:PackageProjectUrl=https://github.com/ikpil/DotFastLZ"
55-
PACK_OPTIONS+=" /p:RepositoryUrl=https://github.com/ikpil/DotFastLZ"
56-
PACK_OPTIONS+=" /p:PackageTags=\"compression fastlz unity3d lz77\""
57-
dotnet pack $PACK_OPTIONS /p:PackageVersion=${{ github.event.inputs.version }} -c Release --nologo --output working-nuget
50+
run: dotnet pack -p:PackageVersion=${{ github.event.inputs.version }} -c Release --nologo --output working-nuget
5851

5952
- name: Publish the package to nuget.org
6053
run: dotnet nuget push ./working-nuget/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
5-
<PackageId>DotFastLZ.Compression</PackageId>
6-
<PackageReadmeFile>README.md</PackageReadmeFile>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.1</TargetFramework>
5+
<PackageId>DotFastLZ.Compression</PackageId>
6+
<PackageReadmeFile>README.md</PackageReadmeFile>
7+
<Authors>ikpil</Authors>
8+
<Description>Small and portable byte-aligned LZ77 compression for C#</Description>
9+
<RepositoryType>git</RepositoryType>
10+
<PackageProjectUrl>https://github.com/ikpil/DotFastLZ</PackageProjectUrl>
11+
<RepositoryUrl>https://github.com/ikpil/DotFastLZ</RepositoryUrl>
12+
<PackageTags>compression fastlz unity3d lz77</PackageTags>
13+
</PropertyGroup>
814

9-
<ItemGroup>
10-
<None Include="../../README.md" Pack="true" PackagePath="\"/>
11-
</ItemGroup>
15+
<ItemGroup>
16+
<None Include="../../README.md" Pack="true" PackagePath="\"/>
17+
</ItemGroup>
1218

1319
</Project>

src/DotFastLZ.Packaging.Tools/DotFastLZ.Packaging.Tools.csproj

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,20 @@
66
<AssemblyName>6pack</AssemblyName>
77
<PackageId>DotFastLZ.Packaging.Tools</PackageId>
88
<PackageReadmeFile>README.md</PackageReadmeFile>
9+
<Authors>ikpil</Authors>
10+
<Description>Small and portable byte-aligned LZ77 compression for C#</Description>
11+
<RepositoryType>git</RepositoryType>
12+
<PackageProjectUrl>https://github.com/ikpil/DotFastLZ</PackageProjectUrl>
13+
<RepositoryUrl>https://github.com/ikpil/DotFastLZ</RepositoryUrl>
14+
<PackageTags>compression fastlz unity3d lz77</PackageTags>
915
</PropertyGroup>
1016

1117
<ItemGroup>
1218
<None Include="../../README.md" Pack="true" PackagePath="\"/>
1319
</ItemGroup>
14-
20+
1521
<ItemGroup>
16-
<ProjectReference Include="..\DotFastLZ.Packaging\DotFastLZ.Packaging.csproj" />
22+
<ProjectReference Include="..\DotFastLZ.Packaging\DotFastLZ.Packaging.csproj"/>
1723
</ItemGroup>
1824

1925
</Project>

src/DotFastLZ.Packaging/DotFastLZ.Packaging.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<PackageId>DotFastLZ.Packaging</PackageId>
66
<PackageReadmeFile>README.md</PackageReadmeFile>
7+
<Authors>ikpil</Authors>
8+
<Description>Small and portable byte-aligned LZ77 compression for C#</Description>
9+
<RepositoryType>git</RepositoryType>
10+
<PackageProjectUrl>https://github.com/ikpil/DotFastLZ</PackageProjectUrl>
11+
<RepositoryUrl>https://github.com/ikpil/DotFastLZ</RepositoryUrl>
12+
<PackageTags>compression fastlz unity3d lz77</PackageTags>
713
</PropertyGroup>
814

915
<ItemGroup>
1016
<None Include="../../README.md" Pack="true" PackagePath="\"/>
1117
</ItemGroup>
1218

1319
<ItemGroup>
14-
<ProjectReference Include="..\DotFastLZ.Compression\DotFastLZ.Compression.csproj" />
20+
<ProjectReference Include="..\DotFastLZ.Compression\DotFastLZ.Compression.csproj"/>
1521
</ItemGroup>
1622

1723
</Project>

0 commit comments

Comments
 (0)