[PR #2949] [CLOSED] Try to regenerate the dependency tree that lives in the solution #25170

Open
opened 2026-01-31 09:07:45 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/microsoft/terminal/pull/2949
Author: @DHowett-MSFT
Created: 9/28/2019
Status: Closed

Base: masterHead: dev/duhowett/deptree


📝 Commits (9)

  • e286cd9 Try to regenerate the dependency tree that lives in the solution
  • 4f61f42 Add GUIDs to ProjectReferences
  • 05cbffe Revert "Combined changes to make the build work again (see inside) (#2945)"
  • 4a9283d Merge commit '05cbffe1' into HEAD
  • 33f33b1 Add noexcept to dx header.
  • ba629c4 Disable new rule C26814 as it's breaking builds
  • b45d510 Need reference to renderer base inside UnitTests_TerminalCore
  • f1a9953 another GUID
  • 7cae69e I live in guids, I breathe in guids, guids for days

📊 Changes

28 files changed (+507 additions, -116 deletions)

View changed files

📝 OpenConsole.sln (+116 -31)
📝 build/pipelines/templates/build-console-steps.yml (+11 -2)
build/scripts/Index-Pdbs.ps1 (+85 -0)
📝 pkg/appx/OpenConsolePackage.wapproj (+6 -2)
📝 src/cascadia/CascadiaPackage/CascadiaPackage.wapproj (+6 -2)
📝 src/cascadia/LocalTests_TerminalApp/TerminalApp.LocalTests.vcxproj (+19 -8)
📝 src/cascadia/TerminalApp/TerminalApp.vcxproj (+31 -20)
📝 src/cascadia/TerminalApp/lib/TerminalAppLib.vcxproj (+5 -4)
📝 src/cascadia/TerminalApp/packages.config (+4 -1)
📝 src/cascadia/TerminalConnection/TerminalConnection.vcxproj (+14 -2)
📝 src/cascadia/TerminalConnection/TerminalConnection.vcxproj.filters (+1 -0)
📝 src/cascadia/TerminalConnection/packages.config (+4 -1)
📝 src/cascadia/TerminalControl/TerminalControl.vcxproj (+38 -8)
📝 src/cascadia/TerminalControl/TerminalControl.vcxproj.filters (+2 -1)
📝 src/cascadia/TerminalControl/packages.config (+4 -1)
📝 src/cascadia/TerminalSettings/TerminalSettings.vcxproj (+18 -2)
📝 src/cascadia/TerminalSettings/packages.config (+4 -1)
📝 src/cascadia/WindowsTerminal/WindowsTerminal.vcxproj (+29 -18)
📝 src/cascadia/WindowsTerminal/packages.config (+5 -2)
📝 src/cascadia/ut_app/TerminalApp.UnitTests.vcxproj (+6 -2)

...and 8 more files

📄 Description

  • An attempt to fix parallel builds emerges.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/microsoft/terminal/pull/2949 **Author:** [@DHowett-MSFT](https://github.com/DHowett-MSFT) **Created:** 9/28/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dev/duhowett/deptree` --- ### 📝 Commits (9) - [`e286cd9`](https://github.com/microsoft/terminal/commit/e286cd9ad52031d80567f7fe9d53f6bf7bfa86bb) Try to regenerate the dependency tree that lives in the solution - [`4f61f42`](https://github.com/microsoft/terminal/commit/4f61f428f432ee76e7784112cd6cb8060a99ff55) Add GUIDs to ProjectReferences - [`05cbffe`](https://github.com/microsoft/terminal/commit/05cbffe18694696030b37408be39fa3add8e91b7) Revert "Combined changes to make the build work again (see inside) (#2945)" - [`4a9283d`](https://github.com/microsoft/terminal/commit/4a9283d173da342e8f9e622c05928106028672d0) Merge commit '05cbffe1' into HEAD - [`33f33b1`](https://github.com/microsoft/terminal/commit/33f33b1ab1f8c22448f84e256fe5edf2508bb25b) Add noexcept to dx header. - [`ba629c4`](https://github.com/microsoft/terminal/commit/ba629c4fabfb088c9b5e683d494a338ed114f4dc) Disable new rule C26814 as it's breaking builds - [`b45d510`](https://github.com/microsoft/terminal/commit/b45d5103baae56730daf132e5fdb13f3d7bc824c) Need reference to renderer base inside UnitTests_TerminalCore - [`f1a9953`](https://github.com/microsoft/terminal/commit/f1a9953cd58bc647e43492dc02277cff0d546bc0) another GUID - [`7cae69e`](https://github.com/microsoft/terminal/commit/7cae69e07e9e186cb85deec33d9a237dd43e30a9) I live in guids, I breathe in guids, guids for days ### 📊 Changes **28 files changed** (+507 additions, -116 deletions) <details> <summary>View changed files</summary> 📝 `OpenConsole.sln` (+116 -31) 📝 `build/pipelines/templates/build-console-steps.yml` (+11 -2) ➕ `build/scripts/Index-Pdbs.ps1` (+85 -0) 📝 `pkg/appx/OpenConsolePackage.wapproj` (+6 -2) 📝 `src/cascadia/CascadiaPackage/CascadiaPackage.wapproj` (+6 -2) 📝 `src/cascadia/LocalTests_TerminalApp/TerminalApp.LocalTests.vcxproj` (+19 -8) 📝 `src/cascadia/TerminalApp/TerminalApp.vcxproj` (+31 -20) 📝 `src/cascadia/TerminalApp/lib/TerminalAppLib.vcxproj` (+5 -4) 📝 `src/cascadia/TerminalApp/packages.config` (+4 -1) 📝 `src/cascadia/TerminalConnection/TerminalConnection.vcxproj` (+14 -2) 📝 `src/cascadia/TerminalConnection/TerminalConnection.vcxproj.filters` (+1 -0) 📝 `src/cascadia/TerminalConnection/packages.config` (+4 -1) 📝 `src/cascadia/TerminalControl/TerminalControl.vcxproj` (+38 -8) 📝 `src/cascadia/TerminalControl/TerminalControl.vcxproj.filters` (+2 -1) 📝 `src/cascadia/TerminalControl/packages.config` (+4 -1) 📝 `src/cascadia/TerminalSettings/TerminalSettings.vcxproj` (+18 -2) 📝 `src/cascadia/TerminalSettings/packages.config` (+4 -1) 📝 `src/cascadia/WindowsTerminal/WindowsTerminal.vcxproj` (+29 -18) 📝 `src/cascadia/WindowsTerminal/packages.config` (+5 -2) 📝 `src/cascadia/ut_app/TerminalApp.UnitTests.vcxproj` (+6 -2) _...and 8 more files_ </details> ### 📄 Description - An attempt to fix parallel builds emerges. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 09:07:45 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#25170