Skip to content

Commit

Permalink
Merge pull request #3 from stifskere/dev
Browse files Browse the repository at this point in the history
Push all changes to main
  • Loading branch information
stifskere authored Mar 30, 2024
2 parents 42bc5dc + aab8a29 commit 943a49a
Show file tree
Hide file tree
Showing 181 changed files with 7,939 additions and 1,023 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release to NuGet

on:
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release --no-build
- name: Pack library
run: dotnet pack -c Release --no-build --output .
- name: Push to NuGet
run: |
dotnet nuget push "*.nupkg" --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json
16 changes: 11 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
bin/
obj/
bin

./MemwLib/obj/
./Tests/obj/

/packages/
riderModule.iml
./riderModule.iml
/_ReSharper.Caches/
.idea
.gitpass

.idea/.idea.MemwLib/.idea/workspace.xml

MemwLib/obj
Tests/obj
13 changes: 13 additions & 0 deletions .idea/.idea.MemwLib/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/.idea.MemwLib/.idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.idea.MemwLib/.idea/httpRequests/http-client.cookies

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

68 changes: 68 additions & 0 deletions .idea/.idea.MemwLib/.idea/httpRequests/http-requests-log.http

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/.idea.MemwLib/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.MemwLib/.idea/projectSettingsUpdater.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.MemwLib/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added CONTRIBUTING.md
Empty file.
25 changes: 0 additions & 25 deletions CoreUtils/StringUtils.cs

This file was deleted.

25 changes: 0 additions & 25 deletions Data/DomParser/Collections/AttributeCollection.cs

This file was deleted.

14 changes: 0 additions & 14 deletions Data/DomParser/Collections/CssDocument.cs

This file was deleted.

92 changes: 0 additions & 92 deletions Data/DomParser/Collections/HtmlNode.cs

This file was deleted.

20 changes: 0 additions & 20 deletions Data/DomParser/Exceptions/InvalidElementException.cs

This file was deleted.

14 changes: 0 additions & 14 deletions Data/DomParser/Structures/CssRuleset.cs

This file was deleted.

Loading

0 comments on commit 943a49a

Please sign in to comment.