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
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
# Project name to pack and publish
PROJECT_NAME: Synercoding.FileFormats.Pdf
# GitHub Packages Feed settings
GITHUB_FEED: https://nuget.pkg.github.com/synercoder/index.json
GITHUB_FEED: https://nuget.pkg.github.com/synercoder/
GITHUB_USER: synercoder
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Official NuGet Feed settings
Expand Down
3 changes: 3 additions & 0 deletions src/Synercoding.FileFormats.Pdf/Helpers/IStreamWriteable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace Synercoding.FileFormats.Pdf.Helpers
{
/// <summary>
/// Interface that enables writting implementor to a stream
/// </summary>
public interface IStreamWriteable
{
/// <summary>
Expand Down