-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix tsc build command path, add missing package versions API, and upd…
…ate dependencies for GitHub package deletion script - Added missing working directory information to the tsc build command in the NuGetPush.nuproj file. - Implemented missing package versions API in delete-github-package-version.ts. - Updated the command line arguments for delete-github-package-version.ts to use the corresponding short options (-o, -i, -v, -t, -k) instead of the long options (--org, --package-id, --package-version, --type, --token). - Replaced pwsh with just $(DeleteGitHubPackageVersionScriptName) in the PushGitHub target of the Sdk.targets file. Also updated the arguments passed to the script to match the new command line argument format.
- Loading branch information
Showing
6 changed files
with
77 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<!-- | ||
* Sdk.props | ||
* | ||
* | ||
* Created: 2022-11-27-05:39:27 | ||
* Modified: 2022-12-05-04:12:36 | ||
* | ||
* | ||
* Author: David G. Moore, Jr. <[email protected]> | ||
* | ||
* | ||
* Copyright © 2022-2023 David G. Moore, Jr., All Rights Reserved | ||
* License: MIT (https://opensource.org/licenses/MIT) | ||
--> | ||
|
||
<Project> | ||
<ItemDefinitionGroup> | ||
<NuGetSource Value="Value" PushOnBuild="false" ApiKey="" /> | ||
<NuGetSource Value="Value" PushOnBuild="false" ApiKey="" /> | ||
<NuGetPushJob PackagePath="" PackageId="" Version="" ApiKey="" DeleteCommand="" PushCommand="" /> | ||
</ItemDefinitionGroup> | ||
<PropertyGroup> | ||
<NuGetConfigFile>$(MSBuildThisFileDirectory)../NuGet.config</NuGetConfigFile> | ||
<DeleteGitHubPackageVersionScriptName>$(MSBuildThisFileDirectory)../Scripts/delete-github-package-version.ps1</DeleteGitHubPackageVersionScriptName> | ||
<NuGetConfigFile>$(MSBuildThisFileDirectory)../NuGet.config</NuGetConfigFile> | ||
<DeleteGitHubPackageVersionScriptName>$(MSBuildThisFileDirectory)../Scripts/delete-github-package-version</DeleteGitHubPackageVersionScriptName> | ||
<GitHubOrg /> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters