Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a6bba7b
Initial
adityapatwardhan Jun 13, 2025
01c761f
PSresources
adityapatwardhan Jul 10, 2025
b5894a7
PSResources get
adityapatwardhan Jul 13, 2025
82149a9
Fix get for psresources
adityapatwardhan Jul 22, 2025
82feaa2
Set operations for psresources working
adityapatwardhan Jul 28, 2025
6def502
fix enums
adityapatwardhan Jul 28, 2025
bebe3e9
Restores setting files
adityapatwardhan Jul 28, 2025
03a38be
schema updates via CR
adityapatwardhan Jul 29, 2025
5b3908f
Schema updates
adityapatwardhan Jul 30, 2025
1f41be9
Fix json and add regex
adityapatwardhan Jul 30, 2025
3e26b2b
Add tags
adityapatwardhan Jul 30, 2025
2649dd6
Address CR feedback
adityapatwardhan Jul 30, 2025
3aa0f45
update resource names
adityapatwardhan Jul 30, 2025
772fa16
Refactor
adityapatwardhan Aug 5, 2025
e169113
Refactor repository
adityapatwardhan Aug 5, 2025
92efb61
Major refactor
adityapatwardhan Aug 11, 2025
85b0bec
Might revert
adityapatwardhan Aug 21, 2025
fe2647c
Fixes to resource
adityapatwardhan Nov 4, 2025
da3f83c
Add tests
adityapatwardhan Nov 4, 2025
cc9ae96
In progress
adityapatwardhan Nov 19, 2025
7bd4ab8
Bug fixes and tests
adityapatwardhan Feb 11, 2026
7efc412
Before removing psresourcelist _exist
adityapatwardhan Feb 24, 2026
bd5a4b9
After removing _exist for psresourcelist
adityapatwardhan Feb 25, 2026
844d36f
Implementation complete with tests passing
adityapatwardhan Feb 26, 2026
6df0729
More tests and bug fixes
adityapatwardhan Feb 28, 2026
8f80ee7
Update test/DscResource/configs/repository.unregister.dsc.yaml
adityapatwardhan Mar 13, 2026
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
6 changes: 6 additions & 0 deletions doBuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ function DoBuild
Write-Verbose -Verbose -Message "Copying PSResourceRepository.admx to '$BuildOutPath'"
Copy-Item -Path "${SrcPath}/PSResourceRepository.admx" -Dest "$BuildOutPath" -Force

Write-Verbose -Verbose -Message "Copying psresourceget.ps1 to '$BuildOutPath'"
Copy-Item -Path "${SrcPath}/dsc/psresourceget.ps1" -Dest "$BuildOutPath" -Force

Write-Verbose -Verbose -Message "Copying resource manifests to '$BuildOutPath'"
Copy-Item -Path "${SrcPath}/dsc/*.resource.json" -Dest "$BuildOutPath" -Force

# Build and place binaries
if ( Test-Path "${SrcPath}/code" ) {
Write-Verbose -Verbose -Message "Building assembly and copying to '$BuildOutPath'"
Expand Down
2 changes: 2 additions & 0 deletions src/code/ContainerRegistryServerAPICalls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1001,6 +1001,8 @@ internal JObject GetHttpResponseJObjectUsingDefaultHeaders(string url, HttpMetho
_cmdletPassedIn);
}

_cmdletPassedIn.WriteVerbose("Exiting ContainerRegistryServerAPICalls::GetHttpResponseJObjectUsingDefaultHeaders() with NULL");

return null;
}

Expand Down
Loading
Loading