|
2 | 2 |
|
3 | 3 | Photography Co-worker Kevin Hecht (kevin.a.hecht@pwc.com) |
4 | 4 |
|
| 5 | +# To Publish Module to PowerShell Gallery |
| 6 | + |
| 7 | +Publish-Module -Path <Path> -NuGetApiKey <APIKey> -Repository PSGallery |
| 8 | + |
| 9 | +Publish-Module -Path "C:\Git\SqlQueryClass\dist\SqlQueryClass" -NuGetApiKey "" -Repository PSGallery |
| 10 | + |
| 11 | +Find-Module -Name SqlQueryClass | Install-Module -Scope CurrentUser -AcceptLicense |
| 12 | + |
| 13 | +Find-Module -Name SqlQueryClass | FL |
| 14 | + |
| 15 | +Name : SqlQueryClass |
| 16 | +Version : 0.1.0 |
| 17 | +Type : Module |
| 18 | +Description : Module that create an instance of a PowerShell class which is used to execute SQL Queries and manages output as DataTable, DataAdapter, DataSet, SqlReader, or NonQuery result object. |
| 19 | +Author : Brooks Vaughn |
| 20 | +CompanyName : BrooksV |
| 21 | +Copyright : (c) Brooks Vaughn. All rights reserved. |
| 22 | +PublishedDate : 2/6/2025 3:43:39 AM |
| 23 | +InstalledDate : |
| 24 | +UpdatedDate : |
| 25 | +LicenseUri : https://github.com/BrooksV/SqlQueryClass/blob/main/LICENSE |
| 26 | +ProjectUri : https://github.com/BrooksV/SqlQueryClass |
| 27 | +IconUri : |
| 28 | +Tags : {PowerShell, Database, SQL, SQLServer…} |
| 29 | +Includes : {[RoleCapability, System.Object[]], [DscResource, System.Object[]], [Cmdlet, System.Object[]], [Workflow, System.Object[]]…} |
| 30 | +PowerShellGetFormatVersion : |
| 31 | +ReleaseNotes : |
| 32 | +Dependencies : {} |
| 33 | +RepositorySourceLocation : https://www.powershellgallery.com/api/v2 |
| 34 | +Repository : PSGallery |
| 35 | +PackageManagementProvider : NuGet |
| 36 | +AdditionalMetadata : @{summary=Module that create an instance of a PowerShell class which is used to execute SQL Queries and manages output as DataTable, DataAdapter, DataSet, SqlReader, or NonQuery result object.; |
| 37 | + ItemType=Module; IsPrerelease=false; PackageManagementProvider=NuGet; NormalizedVersion=0.1.0; SourceName=PSGallery; tags=PowerShell Database SQL SQLServer SQLQuery DataAdapter DataSet DataTable |
| 38 | + PSModule; description=Module that create an instance of a PowerShell class which is used to execute SQL Queries and manages output as DataTable, DataAdapter, DataSet, SqlReader, or NonQuery result |
| 39 | + object.; Authors=Brooks Vaughn; versionDownloadCount=0; GUID=8375edbe-fb0f-4cb6-acb0-9964b45725c0; lastUpdated=2/6/2025 3:43:39 AM -05:00; requireLicenseAcceptance=False; downloadCount=0; |
| 40 | + isLatestVersion=True; CompanyName=Unknown; Functions=New-SqlQueryDataSet; FileList=SqlQueryClass.nuspec|about_SqlQueryClass.help.txt|SqlQueryClass.psd1|SqlQueryClass.psm1; |
| 41 | + PowerShellHostVersion=5.1; created=2/6/2025 3:43:39 AM -05:00; isAbsoluteLatestVersion=True; copyright=(c) Brooks Vaughn. All rights reserved.; packageSize=15464; developmentDependency=False; |
| 42 | + updated=2025-02-06T03:43:39Z; published=2/6/2025 3:43:39 AM -05:00} |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | +# Code Signing |
| 47 | + |
| 48 | +Get-ChildItem -Path Cert:\CurrentUser -Recurse | FL |
| 49 | +Get-ChildItem -Path Cert:\CurrentUser\My -CodeSigningCert |
| 50 | +Get-ChildItem -Path Cert:\LocalMachine -Recurse | FL |
| 51 | + |
5 | 52 | # git config commands |
6 | 53 |
|
7 | 54 | - ps.readinglist.md -- Quick Reference Reading list of helpful PowerShell sites, articles, and documents |
@@ -310,3 +357,16 @@ git push origin master --force |
310 | 357 |
|
311 | 358 | - **Purpose**: To overwrite the remote `master` branch with your local changes, even if it results in non-fast-forward updates. |
312 | 359 | - **Example**: Use with caution as it can overwrite changes in the remote repository that others may be relying on. |
| 360 | + |
| 361 | +# 2025-02-05 22:59:55 |
| 362 | + |
| 363 | +git pull origin main |
| 364 | + |
| 365 | +git checkout -b features/readme-updates |
| 366 | +git status |
| 367 | + |
| 368 | +git commit -m "" |
| 369 | + |
| 370 | +git commit -a -m "Updated SQL query class and added error handling" |
| 371 | + |
| 372 | +git push |
0 commit comments