Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove release notes file functionality. #11

Merged
merged 1 commit into from
May 25, 2019
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
5 changes: 0 additions & 5 deletions Module.Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,6 @@ Task Publish -If ($NuGetApiKey) Build, Test, BuildHelp, GenerateFileCatalog, {
$publishParams['Repository'] = $PublishRepository
}

# Consider not using -ReleaseNotes parameter when Update-ModuleManifest has been fixed.
if ($ReleaseNotesPath) {
$publishParams['ReleaseNotes'] = @(Get-Content $ReleaseNotesPath)
}

"Calling Publish-Module..."
Publish-Module @publishParams
}
Expand Down
5 changes: 0 additions & 5 deletions Module.BuildSettings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,6 @@ $NuGetApiKey = $env:PowershellGalleryKey
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$PublishRepository = "PSGallery"

# Path to the release notes file. Set to $null if the release notes reside in the manifest file.
# The contents of this file are used during publishing for the ReleaseNotes parameter.
[System.Diagnostics.CodeAnalysis.SuppressMessage('PSUseDeclaredVarsMoreThanAssigments', '')]
$ReleaseNotesPath = 'ReleaseNotes.txt'

# ----------------------- Misc properties ---------------------------------

# In addition, PFX certificates are supported in an interactive scenario only,
Expand Down