move nightly builds back to main feed

This commit is contained in:
Eliot Jones 2023-08-05 16:22:55 +01:00
parent 8a82500427
commit fcf09ac6b3
3 changed files with 1 additions and 17 deletions

View File

@ -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

View File

@ -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:

View File

@ -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)