Skip to content

Commit f83ad23

Browse files
CopilotbaronfelCopilot
authored
Add PickBestRid MSBuild task for RID negotiation (#50616)
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: baronfel <[email protected]> Co-authored-by: Chet Husk <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 46da47f commit f83ad23

18 files changed

+398
-0
lines changed

.github/copilot-instructions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ Coding Style and Changes:
22
- Code should match the style of the file it's in.
33
- Changes should be minimal to resolve a problem in a clean way.
44
- User-visible changes to behavior should be considered carefully before committing. They should always be flagged.
5+
- When generating code, run `dotnet format` to ensure uniform formatting.
6+
- Prefer using file-based namespaces for new code.
7+
- Do not allow unused `using` directives to be committed.
58

69
Testing:
710
- Large changes should always include test changes.

src/Tasks/Common/Resources/Strings.resx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -995,4 +995,12 @@ You may need to build the project on another operating system or architecture, o
995995
<value>NETSDK1228: This project depends on the Aspire Workload which has been deprecated. Aspire now ships via NuGet packages and no longer requires a workload. Please visit {0} for upgrade guidance.</value>
996996
<comment>{StrBegins="NETSDK1228: "}</comment>
997997
</data>
998+
<data name="RuntimeGraphFileDoesNotExist" xml:space="preserve">
999+
<value>NETSDK1229: File '{0}' does not exist. Please ensure the runtime graph path exists.</value>
1000+
<comment>{StrBegins="NETSDK1229: "}{Locked="{0}"}</comment>
1001+
</data>
1002+
<data name="UnableToFindMatchingRid" xml:space="preserve">
1003+
<value>NETSDK1230: Unable to find a matching RID for '{0}' from among [{1}] in graph '{2}'.</value>
1004+
<comment>{StrBegins="NETSDK1230: "}{Locked="{0}"}{Locked="{1}"}{Locked="{2}"}</comment>
1005+
</data>
9981006
</root>

src/Tasks/Common/Resources/xlf/Strings.cs.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.de.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.es.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.fr.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.it.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.ja.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.ko.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Tasks/Common/Resources/xlf/Strings.pl.xlf

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)