Skip to content

Commit

Permalink
Fix fody reference and unwanted output deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
rstarkov committed Oct 12, 2024
1 parent 901b977 commit df9738d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
- name: Cleanup
shell: pwsh
run: |
Remove-Item -Path .\Publish\linux-* -Recurse -Force
Remove-Item -Path .\Publish\osx-* -Recurse -Force
Remove-Item -Path ./Publish/runtimes/linux-* -Recurse -Force
Remove-Item -Path ./Publish/runtimes/osx-* -Recurse -Force
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down
4 changes: 3 additions & 1 deletion Src/GitSimpleRewriteHistory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
</PackageReference>
<PackageReference Include="LibGit2Sharp" Version="0.30.0" />
<PackageReference Include="Microsoft-WindowsAPICodePack-Shell" Version="1.1.5" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="RT.Util" Version="2.0.1776" />
<PackageReference Include="RT.Util.Core" Version="2.0.1776" />
</ItemGroup>
Expand Down

0 comments on commit df9738d

Please sign in to comment.