mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
move nightly builds back to main feed
This commit is contained in:
parent
8a82500427
commit
fcf09ac6b3
2
.github/workflows/nightly_release.yml
vendored
2
.github/workflows/nightly_release.yml
vendored
@ -43,7 +43,7 @@ jobs:
|
||||
|
||||
- name: Write nightly version to projects
|
||||
run: |
|
||||
$newVer = .\tools\generate-nightly-version.ps1; .\tools\set-version.ps1 $newVer; .\tools\set-package-nightly.ps1
|
||||
$newVer = .\tools\generate-nightly-version.ps1; .\tools\set-version.ps1 $newVer
|
||||
|
||||
- name: Restore packages
|
||||
run: dotnet restore tools/UglyToad.PdfPig.Package/UglyToad.PdfPig.Package.csproj
|
||||
|
@ -25,8 +25,6 @@ Or from the package manager console:
|
||||
|
||||
While the version is below 1.0.0 minor versions will change the public API without warning (SemVer will not be followed until 1.0.0 is reached).
|
||||
|
||||
Nightly pre-release versions of the development code are pushed to https://www.nuget.org/packages/PdfPig.Nightly/
|
||||
|
||||
## Get Started
|
||||
|
||||
The simplest usage at this stage is to open a document, reading the words from every page:
|
||||
|
@ -1,14 +0,0 @@
|
||||
param (
|
||||
)
|
||||
|
||||
$root = (Split-Path -parent $PSCommandPath)
|
||||
|
||||
$packageProjectPath = "$root/UglyToad.PdfPig.Package/UglyToad.PdfPig.Package.csproj"
|
||||
$xml = New-Object XML
|
||||
$xml.Load($packageProjectPath)
|
||||
$xml.Project.PropertyGroup[0].PackageId = "PdfPig.Nightly"
|
||||
$xml.Project.PropertyGroup[0].Title = "PdfPig.Nightly"
|
||||
$xml.Project.PropertyGroup[0].Product = "PdfPig.Nightly"
|
||||
|
||||
|
||||
$xml.Save($packageProjectPath)
|
Loading…
Reference in New Issue
Block a user