Skip to content
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

Config code #2942

Merged
merged 33 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
99c1714
Commit before moving to internal
JohnMcPMS Dec 15, 2022
e55bd08
Add API review doc and minor IDL changes
JohnMcPMS Dec 16, 2022
e2ca319
Minor update to API: remove Statics and add diagnostics functionality.
JohnMcPMS Jan 6, 2023
6326c05
Checkpoint
JohnMcPMS Jan 7, 2023
1ffbc87
Checkpoint
JohnMcPMS Jan 10, 2023
50700b1
Skeleton complete
JohnMcPMS Jan 10, 2023
d3cc1ce
Convert to project to DLL
JohnMcPMS Jan 11, 2023
5c0633a
Begin YAML parsing
JohnMcPMS Jan 12, 2023
c59679f
Merge from master
JohnMcPMS Jan 13, 2023
372f02d
build fix and API updates
JohnMcPMS Jan 14, 2023
00383c3
Basic parser working
JohnMcPMS Jan 19, 2023
2de91fe
Add additional processor interface, move stream loading to enable dia…
JohnMcPMS Jan 20, 2023
a8e26fa
Basic actions building but untested
JohnMcPMS Jan 25, 2023
be5b279
Some logic fixes and the initial test infrastructure
JohnMcPMS Feb 1, 2023
8c9b00d
checkpoint work on tests
JohnMcPMS Feb 1, 2023
e62961a
Add sync/async functions so as to have both for all processor functio…
JohnMcPMS Feb 2, 2023
3ab4b03
Change unit processor output to enable differentiating errors from un…
JohnMcPMS Feb 3, 2023
579b129
Test fixes
JohnMcPMS Feb 4, 2023
dcdb014
Checkpoint; test factory interfaces in progress
JohnMcPMS Feb 6, 2023
b5f07b5
Fix not creating get settings result members; add many tests
JohnMcPMS Feb 7, 2023
677b7ed
Changes to API and apply processing, more tests
JohnMcPMS Feb 8, 2023
37fe832
Code complete?
JohnMcPMS Feb 9, 2023
02d24b4
Some minor changes after fixing up sample, docs, pipeline update for …
JohnMcPMS Feb 9, 2023
9c0482d
Merge from master
JohnMcPMS Feb 9, 2023
4cc990d
Fix spelling and pipeline task for test
JohnMcPMS Feb 9, 2023
c7963c9
Better file match pattern for tests?
JohnMcPMS Feb 9, 2023
3996176
Update pipeline to check why the configuration types are not activati…
JohnMcPMS Feb 9, 2023
b1c25fc
Explicitly force the projection (and hopefully the real module) to be…
JohnMcPMS Feb 9, 2023
d6807e1
PR feedback and yet another attempt at getting the module to copy
JohnMcPMS Feb 10, 2023
c20ddde
Break down and directly reference the module project rather than rely…
JohnMcPMS Feb 10, 2023
959dbb3
Remove test task and fix platform for test publishing
JohnMcPMS Feb 10, 2023
f197d90
Remove RTTI from configuration and dependencies
JohnMcPMS Feb 10, 2023
3e4f1ba
PR feedback: Remove Any CPU and ARM solution configurations since we …
JohnMcPMS Feb 14, 2023
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
3 changes: 3 additions & 0 deletions .github/actions/spelling/allow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ dll
dllexport
dllmain
Dlls
DMC
docx
dotnet
downlevel
Expand Down Expand Up @@ -228,13 +229,15 @@ https
HWND
Hyperlink
IAppx
IConfiguration
icu
IDX
IFACEMETHOD
ifdef
ifndef
ifspec
ifstream
IInspectable
IIS
impl
inapplicabilities
Expand Down
9 changes: 9 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,15 @@ jobs:
codeCoverageEnabled: true
platform: 'Any CPU'
configuration: '$(BuildConfiguration)'

- task: VSTest@2
displayName: 'Run tests: Microsoft.Management.Configuration.UnitTests'
inputs:
testSelector: 'testAssemblies'
testAssemblyVer2: 'Microsoft.Management.Configuration.UnitTests.dll'
searchFolder: '$(buildOutDir)\Microsoft.Management.Configuration.UnitTests'
codeCoverageEnabled: true
platform: 'x64'

- task: CopyFiles@2
displayName: 'Copy Util to artifacts folder'
Expand Down
Loading