Skip to content

Commit cefd93f

Browse files
committed
Fix nuget pack
1 parent 949f661 commit cefd93f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818
- name: Build
19-
run: dotnet build .\Source\Avalonia.HtmlRenderer\Avalonia.HtmlRenderer.csproj
19+
run: dotnet build .\src\Avalonia.HtmlRenderer\Avalonia.HtmlRenderer.csproj
2020
- name: Pack
21-
run: dotnet pack .\Source\Avalonia.HtmlRenderer\Avalonia.HtmlRenderer.csproj --no-build -o .\artifacts
21+
run: dotnet pack .\src\Avalonia.HtmlRenderer\Avalonia.HtmlRenderer.csproj --no-build -o .\artifacts
2222
- name: Upload Artifacts
2323
uses: actions/upload-artifact@v4
2424
with:

build/Props/PackEnable.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup Label="PackageIcon">
24-
<None Include="$(MSBuildThisFileDirectory)/../../branding/icon.png" Pack="true" Visible="false" PackagePath=""/>
24+
<None Include="$(MSBuildThisFileDirectory)/../icon.png" Pack="true" Visible="false" PackagePath=""/>
2525
</ItemGroup>
2626
</Project>

src/Avalonia.HtmlRenderer/Avalonia.HtmlRenderer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@
2525
</ItemGroup>
2626

2727
<Import Project="$(RepositoryPropsRoot)/PackEnable.targets" />
28+
<Import Project="$(RepositoryPropsRoot)/SignEnable.targets" />
2829
</Project>

0 commit comments

Comments
 (0)