Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Conversation

@AmelBawa-msft
Copy link
Contributor

@AmelBawa-msft AmelBawa-msft commented Jun 5, 2024

Summary of the pull request

References and relevant issues

  • Moved Windows Package Manager to a new csproj
  • Decoupled DSC from Windows Package Manager and promoted to a separate csproj
  • Rename IAppInstallManagerService to IMicrosoftStoreService
  • Rename IWindowsPackageManager to IWinGet
  • Use Microsoft.Extensions.Logging.ILogger instead of Serilog.ILogger in DevHome.Services.*
  • Restructure DSC into services instead of a single helper file
graph TB;
    %%{init:{'flowchart':{"defaultRenderer": "elk"}}}%%
    subgraph Services["\n\n\n\nService projects:\n- UI agnostic\n- Mockable\n- Reusable"]
        Core
        WPM
        DSC
    end

    Core[Core]
    WPM[WindowsPackageManager]
    DSC[DesiredStateConfiguration]
    SF[SetupFlow]
    SFE[SetupFlowElevated]
    Common[Common]
    
    WPM --> Core
    DSC --> Core
    SF --> WPM
    SF --> DSC    
    SFE --> WPM
    SFE --> DSC
    Common --> Core
Loading

Detailed description of the pull request / Additional comments

Validation steps performed

PR checklist

@AmelBawa-msft AmelBawa-msft changed the title Refactoring winget services out of UI projects Refactoring winget/dsc services out of UI projects Jun 14, 2024
@krschau
Copy link
Collaborator

krschau commented Jun 21, 2024

You might want to rebase instead of merge... looks like your PR has pulled in previous changes, making it harder to see what changed here.

Copy link
Collaborator

@krschau krschau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest moving new stuff under Common in a separate change.
Also, you might want to create Debug_FailFast configs for the new projects

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Rename DevHome.SetupFlow.PackageCatalog to PackageCollection Refactor and share code between elevated and dev home processes

6 participants