-
-
Notifications
You must be signed in to change notification settings - Fork 5
Add configurable PowerShell ExecutionPolicy support with settings UI #74
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
Merged
Power-Maverick
merged 9 commits into
master
from
copilot/fix-56c38257-6850-4666-9ae7-98f0c41da468
Sep 30, 2025
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6f03ad5
Initial plan
Copilot 8b2ad0c
Add support for PowerShell ExecutionPolicy Bypass with Process scope
Copilot 4dc388d
Improve MSBuild path finding to use Process scope ExecutionPolicy
Copilot ccd870c
Add configurable PowerShell execution policy with settings UI
Copilot b4458a4
Fixed the PR changes made by copilot
Power-Maverick bf2a626
Update SettingsForm.cs
Power-Maverick a71b33b
Update SettingsForm.cs
Power-Maverick 6cc6d25
Refactor InitCommandLine for custom execution policy
Power-Maverick 3572072
Merge branch 'copilot/fix-56c38257-6850-4666-9ae7-98f0c41da468' of ht…
Power-Maverick File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
1 change: 1 addition & 0 deletions
1
Maverick.PCF.Builder.Tests/.vs/Maverick.PCF.Builder.Tests.csproj.dtbcache.json
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"RootPath":"Z:\\SourceCode\\GitHub\\Power-Maverick\\PCF-CustomControlBuilder\\Maverick.PCF.Builder.Tests","ProjectFileName":"Maverick.PCF.Builder.Tests.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[],"References":[],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"Z:\\SourceCode\\GitHub\\Power-Maverick\\PCF-CustomControlBuilder\\Maverick.PCF.Builder.Tests\\bin\\Debug\\Maverick.PCF.Builder.Tests.dll","OutputItemRelativePath":"Maverick.PCF.Builder.Tests.dll"},{"OutputItemFullPath":"","OutputItemRelativePath":""}],"CopyToOutputEntries":[]} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| <?xml version="1.0"?> | ||
| <package > | ||
| <metadata> | ||
| <id>Maverick.PCF.Builder</id> | ||
| <version>1.0.7</version> | ||
| <title>PCF Builder</title> | ||
| <authors>Danish Naglekar</authors> | ||
| <owners>Power-Maverick</owners> | ||
| <projectUrl>https://github.com/Power-Maverick/PCF-CustomControlBuilder</projectUrl> | ||
| <iconUrl>https://github.com/Power-Maverick/PCF-CustomControlBuilder/blob/master/icon/PCCB_Icon.png</iconUrl> | ||
| <icon>MainIcon.png</icon> | ||
| <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
| <repository type="git" url="https://github.com/Power-Maverick/PCF-CustomControlBuilder.git" branch="master" /> | ||
| <license type="expression">MIT</license> | ||
| <description>Easily create, build and deployment solution for your custom control using PCF.</description> | ||
| <summary>Easily create, build and deployment solution for your custom control using PCF.</summary> | ||
| <releaseNotes> | ||
| ---- NEW FEATURE ---- | ||
| #65 - Added support for React control and platform libraries (virtual control) | ||
|
|
||
| ---- BUG FIXES ---- | ||
| #58 - Additional packages not loaded with existing control | ||
|
|
||
| </releaseNotes> | ||
| <copyright>Copyright © Danish Naglekar</copyright> | ||
| <tags>XrmToolBox, PCF, Power Apps, Power Apps Component Framework, PCF Builder</tags> | ||
| <dependencies> | ||
| <dependency id="XrmToolBox" version="1.2018.6.24" /> | ||
| </dependencies> | ||
| </metadata> | ||
| <files> | ||
| <file src="PCFCustomControlBuilder\bin\Release\Maverick.PCF.Builder.dll" target="lib\net462\Plugins" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\MainIcon.png" target="" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\lcid.json" target="lib\net462\Plugins\Maverick.PCF.Builder\DataFiles" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\SupportedDataTypes.json" target="lib\net462\Plugins\Maverick.PCF.Builder\DataFiles" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\MsBuild.ps1" target="lib\net462\Plugins\Maverick.PCF.Builder" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\CoreTools\*.*" target="lib\net462\Plugins\Maverick.PCF.Builder\CoreTools" /> | ||
| <file src="PCFCustomControlBuilder\bin\Release\Templates\*.*" target="lib\net462\Plugins\Maverick.PCF.Builder\Templates" /> | ||
| </files> | ||
| </package> |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.