Skip to content

Commit 2e4bfe5

Browse files
authored
Merge pull request #67 from Codeuctivity/prereleaseFlag
Prerelease flag
2 parents d74e94c + f4f997f commit 2e4bfe5

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
if: env.NUGET_TOKEN_EXISTS != ''
5151
run: |
5252
dotnet nuget push ./PdfJsSharp/bin/Release/*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json
53-
- name: Github prerelease
53+
- name: Github
5454
shell: bash
5555
env:
5656
GITHUB_TOKEN: ${{ github.TOKEN }}
5757
if: env.GITHUB_TOKEN != ''
5858
run: |
59-
gh release create ${{env.CURRENT_VERSION}} ./PdfJsSharp/bin/Release/*.*nupkg --prerelease --generate-notes
59+
gh release create ${{env.CURRENT_VERSION}} ./PdfJsSharp/bin/Release/*.*nupkg --generate-notes
6060
6161
deployTest:
6262
if: github.ref == 'refs/heads/main'

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ get
1515
- NodeJs
1616
- node 18 or 20 x64 (older node versions are supported by older PDFjsSharp versions)
1717

18-
- .NET Framework 4.6.1 or .NET Core 2.0 or [something newer](https://github.com/dotnet/standard/blob/master/docs/versions/netstandard2.0.md)
19-
2018
## HowTo use
2119

2220
- Install nuget package [PdfjsSharp](https://www.nuget.org/packages/Codeuctivity.PdfjsSharp/)
@@ -29,9 +27,7 @@ Assert.Equal(1, actualImages.Count);
2927

3028
## Development
3129

32-
### Windows
33-
34-
Visual Studio 2022 or .net 6 SDK
30+
get .net 8 sdk
3531

3632
### Upgrade npm packages
3733

@@ -53,7 +49,6 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
5349
exit
5450
nvm install 20
5551
sudo apt install dotnet8 zip
56-
echo export DOTNET_CLI_TELEMETRY_OPTOUT=1>> ~/.bash_profile
5752
```
5853

5954
#### Steps to update node_modules.linux.node\*.zip

0 commit comments

Comments
 (0)