Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4d9a388
Initial
adityapatwardhan Jun 13, 2025
ae4985c
PSresources
adityapatwardhan Jul 10, 2025
3f07dbe
PSResources get
adityapatwardhan Jul 13, 2025
41b4ac1
Fix get for psresources
adityapatwardhan Jul 22, 2025
c31b749
Set operations for psresources working
adityapatwardhan Jul 28, 2025
49ad580
fix enums
adityapatwardhan Jul 28, 2025
b8dec8e
Restores setting files
adityapatwardhan Jul 28, 2025
78651f2
schema updates via CR
adityapatwardhan Jul 29, 2025
42e30df
Schema updates
adityapatwardhan Jul 30, 2025
ca81899
Fix json and add regex
adityapatwardhan Jul 30, 2025
ae16a2b
Add tags
adityapatwardhan Jul 30, 2025
ab45a3c
Address CR feedback
adityapatwardhan Jul 30, 2025
ffa4f16
update resource names
adityapatwardhan Jul 30, 2025
c87275e
Refactor
adityapatwardhan Aug 5, 2025
bf95669
Refactor repository
adityapatwardhan Aug 5, 2025
16bee4a
Major refactor
adityapatwardhan Aug 11, 2025
a25c947
Might revert
adityapatwardhan Aug 21, 2025
670c011
Fixes to resource
adityapatwardhan Nov 4, 2025
26c3ed2
Add tests
adityapatwardhan Nov 4, 2025
f6095fc
In progress
adityapatwardhan Nov 19, 2025
6c2c3ac
Bug fixes and tests
adityapatwardhan Feb 11, 2026
d7b19fc
Before removing psresourcelist _exist
adityapatwardhan Feb 24, 2026
f575acd
After removing _exist for psresourcelist
adityapatwardhan Feb 25, 2026
42d5511
Implementation complete with tests passing
adityapatwardhan Feb 26, 2026
7bf64d0
More tests and bug fixes
adityapatwardhan Feb 28, 2026
8cc5f47
Update test/DscResource/configs/repository.unregister.dsc.yaml
adityapatwardhan Mar 13, 2026
950d0b2
CR feedback
adityapatwardhan Mar 20, 2026
78ac043
Misc fixes related to json schema validation
adityapatwardhan Mar 25, 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