Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/dotnet_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,4 @@ jobs:
run: |
ls
- name: create package
shell: bash
env:
ACTIONS_ACCESSTOKEN: ${{ secrets.GITHUB_TOKEN }}
run: dotnet nuget push "package_output/**/*.nupkg" -s "github" --api-key $ACTIONS_ACCESSTOKEN
run: dotnet nuget push "package_output/**/*.nupkg" -s "github" --api-key ${{ secrets.GITHUB_TOKEN }}
4 changes: 4 additions & 0 deletions SharpExcel.Tests/SharpExcel.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
Loading