[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-extension-points":3,"mdc--svxe8j-key":31,"related-org-dotnet-extension-points":2006,"related-repo-dotnet-extension-points":2173},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":19,"repoUrl":20,"updatedAt":21,"license":22,"forks":23,"topics":24,"repo":26,"sourceUrl":29,"mdContent":30},"extension-points","configure MSBuild project extensibility hooks","Guide for MSBuild extensibility: CustomBefore\u002FCustomAfter hooks, wildcard imports with alphabetic ordering, import gating with control properties, NuGet package build extension layout (build\u002FbuildTransitive), and the MicrosoftCommonPropsHasBeenImported guard. USE FOR: diagnosing and fixing MSBuild import and hook patterns, reviewing and fixing extension point anti-patterns in Directory.Build files, fixing missing Exists() guards on imports that break fresh clones, fixing NuGet package hooks being silently dropped instead of appended, making build targets extensible for other projects, injecting custom logic into the build pipeline, creating NuGet packages that extend the build, conditionally disabling imports. DO NOT USE FOR: target authoring patterns (use target-authoring), props vs targets placement (use directory-build-organization), general anti-patterns (use msbuild-antipatterns), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16],{"name":13,"slug":14,"type":15},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"Engineering","engineering",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:21:42.226387","MIT",332,[25],"agent-skills",{"repoUrl":20,"stars":19,"forks":23,"topics":27,"description":28},[25],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-msbuild\u002Fskills\u002Fextension-points","---\nname: extension-points\ndescription: \"Guide for MSBuild extensibility: CustomBefore\u002FCustomAfter hooks, wildcard imports with alphabetic ordering, import gating with control properties, NuGet package build extension layout (build\u002FbuildTransitive), and the MicrosoftCommonPropsHasBeenImported guard. USE FOR: diagnosing and fixing MSBuild import and hook patterns, reviewing and fixing extension point anti-patterns in Directory.Build files, fixing missing Exists() guards on imports that break fresh clones, fixing NuGet package hooks being silently dropped instead of appended, making build targets extensible for other projects, injecting custom logic into the build pipeline, creating NuGet packages that extend the build, conditionally disabling imports. DO NOT USE FOR: target authoring patterns (use target-authoring), props vs targets placement (use directory-build-organization), general anti-patterns (use msbuild-antipatterns), non-MSBuild build systems.\"\nlicense: MIT\n---\n\n# MSBuild Extension Points\n\nHow the MSBuild pipeline provides hooks for SDKs, NuGet packages, repos, and users to inject custom logic.\n\n## CustomBefore \u002F CustomAfter Hooks\n\nEvery major `.targets` file defines import hooks:\n\n```xml\n\u003CPropertyGroup>\n  \u003CCustomBeforeMicrosoftCommonTargets Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' == ''\">\n    $(MSBuildExtensionsPath)\\v$(MSBuildToolsVersion)\\Custom.Before.Microsoft.Common.targets\n  \u003C\u002FCustomBeforeMicrosoftCommonTargets>\n\u003C\u002FPropertyGroup>\n\n\u003CImport Project=\"$(CustomBeforeMicrosoftCommonTargets)\"\n    Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' != '' and Exists('$(CustomBeforeMicrosoftCommonTargets)')\"\u002F>\n\u003C!-- ... core targets ... -->\n\u003CImport Project=\"$(CustomAfterMicrosoftCommonTargets)\"\n    Condition=\"'$(CustomAfterMicrosoftCommonTargets)' != '' and Exists('$(CustomAfterMicrosoftCommonTargets)')\"\u002F>\n```\n\n### Rules\n\n- Default path includes version (`v$(MSBuildToolsVersion)`) for side-by-side installations.\n- Always check `Exists()`. The file may not be present on every machine.\n- **Append** to the property (don't overwrite) to chain multiple hooks:\n\n```xml\n\u003CPropertyGroup>\n  \u003CCustomBeforeMicrosoftCommonTargets>\n    $(CustomBeforeMicrosoftCommonTargets);$(MSBuildThisFileDirectory)MyExtension.targets\n  \u003C\u002FCustomBeforeMicrosoftCommonTargets>\n\u003C\u002FPropertyGroup>\n```\n\n## Wildcard Import Directories\n\nMSBuild imports all files in extension directories, sorted alphabetically:\n\n```xml\n\u003CImport Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore\\*\"\n    Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == 'true'\n               and Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore')\" \u002F>\n```\n\n### Key paths\n\n| Property | Resolves to | Scope |\n|---|---|---|\n| `$(MSBuildUserExtensionsPath)` | `%APPDATA%\\Microsoft\\MSBuild` | Per-user |\n| `$(MSBuildExtensionsPath)` | MSBuild install directory | Machine-wide |\n| `$(MSBuildProjectExtensionsPath)` | `obj\u002F` directory | Per-project (NuGet) |\n\nName files with numeric prefixes for ordering: `01-first.props`, `02-second.props`.\n\n## Import Gating — Control Properties\n\nEvery wildcard import is gated by a boolean property:\n\n```xml\n\u003CPropertyGroup>\n  \u003CImportByWildcardBeforeMicrosoftCommonProps\n      Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == ''\">true\u003C\u002FImportByWildcardBeforeMicrosoftCommonProps>\n  \u003CImportDirectoryBuildProps\n      Condition=\"'$(ImportDirectoryBuildProps)' == ''\">true\u003C\u002FImportDirectoryBuildProps>\n\u003C\u002FPropertyGroup>\n```\n\n### Available control properties\n\n| Property | What it disables |\n|---|---|\n| `ImportDirectoryBuildProps` | Directory.Build.props auto-discovery |\n| `ImportDirectoryBuildTargets` | Directory.Build.targets auto-discovery |\n| `ImportProjectExtensionProps` | NuGet-generated `*.props` in obj\u002F |\n| `ImportProjectExtensionTargets` | NuGet-generated `*.targets` in obj\u002F |\n| `ImportByWildcardBefore*` | Machine-level ImportBefore extensions |\n| `ImportByWildcardAfter*` | Machine-level ImportAfter extensions |\n\n## NuGet Package Build Extension Layout\n\nNuGet packages inject build logic via `build\u002F` or `buildTransitive\u002F` folders:\n\n```text\nMyPackage\u002F\n  build\u002F\n    MyPackage.props      ← imported via *.props wildcard\n    MyPackage.targets    ← imported via *.targets wildcard\n  buildTransitive\u002F\n    MyPackage.props      ← imported by transitive consumers\n    MyPackage.targets\n```\n\n### Rules\n\n- File names **must match the package ID** exactly.\n- `build\u002F` affects direct consumers only. `buildTransitive\u002F` affects the entire dependency chain.\n- Props are imported early (before the project), targets are imported late (after the project).\n\n### Forwarding chain: `buildTransitive\u002F` → `build\u002F` → shared\n\nForward `buildTransitive\u002F*.props` and `buildTransitive\u002F*.targets` through their sibling `build\u002F*.props` \u002F `build\u002F*.targets` files (chain `buildTransitive → build → shared`) instead of importing `buildMultiTargeting\u002F` directly. This keeps `build\u002F` as the single source of truth with a clear ownership chain, so transitive consumers stay in sync with direct consumers instead of the two layouts drifting apart.\n\nWhen `build\u002F` is packed **per-TFM** (`build\u002F\u003Ctfm>\u002F`, via `TfmSpecificPackageFile`, a per-TFM `\u003CPackagePath>`, or SDK conventions) while `buildMultiTargeting\u002F` is not, a `buildTransitive\u002F\u003Ctfm>\u002F` forwarder **must include the TFM segment** — dropping it resolves to a non-existent package-root `build\u002FMyPackage.props` and fails transitive consumers with **`MSB4019`**. Derive the segment from the file's own folder, never `$(TargetFramework)` (NuGet nearest-match can serve a `net10.0` consumer the `net9.0` folder, so `$(TargetFramework)` may name a folder that was never restored):\n\n```xml\n\u003C!-- buildTransitive\u002F\u003Ctfm>\u002FMyPackage.props -->\n\u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\build\\$([System.IO.Path]::GetFileName($([System.IO.Path]::GetDirectoryName('$(MSBuildThisFileDirectory)'))))\\MyPackage.props\" \u002F>\n```\n\n## Source Tree vs Packed Layout\n\nWhen reviewing a NuGet build-extension package, the **source layout** in the repository can legitimately differ from the **packed layout** inside the produced `.nupkg`. This is a common source of false-positive \"import points at a missing file\" findings.\n\nThree packaging mechanisms reshape the layout at pack time:\n\n1. **`.nuspec` `\u003Cfile src=… target=…>` mappings** — copy a single source file into multiple per-TFM targets:\n\n   ```xml\n   \u003C!-- Source tree has ONE shared file:\n          buildTransitive\\common\\MyAdapter.props\n        Pack rewrites it to per-TFM targets inside the .nupkg:\n          buildTransitive\\net462\\MyAdapter.props\n          buildTransitive\\net8.0\\MyAdapter.props\n          buildTransitive\\net9.0\\MyAdapter.props -->\n   \u003Cfiles>\n     \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net462\\MyAdapter.props\" \u002F>\n     \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n     \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n   \u003C\u002Ffiles>\n   ```\n\n   In the `\u003Cfile>` element, a `target` ending in `\\` is treated as a folder (filename preserved from `src`); a `target` ending in a filename renames the file.\n\n2. **`.csproj` `\u003CPackagePath>` metadata** on `\u003CNone Update=…>` or `\u003CContent Include=…>` items — same effect via SDK pack. Use one item per destination to keep the mapping unambiguous:\n\n   ```xml\n   \u003CItemGroup>\n     \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n     \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n   \u003C\u002FItemGroup>\n   ```\n\n   NuGet\u002FSDK pack also accepts a semicolon-separated list (`PackagePath=\"buildTransitive\\net8.0\\;buildTransitive\\net9.0\\\"`) to fan one source out to multiple destinations, but the multi-item form above is harder to misread.\n\n3. **SDK conventions** — `IncludeBuildOutput`, `BuildOutputTargetFolder`, `IncludeContentInPack` automatically place built outputs under `lib\u002F\u003Ctfm>\u002F` or `build\u002F\u003Ctfm>\u002F`.\n\n### Implication for reviewers\n\nA forwarder like the following inside a packed `build\u002Fnet462\u002F` folder is **not** a \"missing-file\" bug, even if the source tree has no `buildTransitive\u002Fnet462\u002F` directory:\n\n```xml\n\u003C!-- In packed build\u002Fnet462\u002FMyAdapter.props -->\n\u003CProject>\n  \u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\buildTransitive\\net462\\MyAdapter.props\" \u002F>\n\u003C\u002FProject>\n```\n\nBefore flagging an unguarded `\u003CImport>` inside a `build\u002F\u003Ctfm>\u002F` or `buildTransitive\u002F\u003Ctfm>\u002F` folder:\n\n1. Look for `*.nuspec` in the project directory and its immediate parent directory (do not walk further up). Read every `\u003Cfile target=…>` whose `target` matches the imported path.\n2. Read the `.csproj` for `\u003CPackagePath>` metadata on `\u003CNone>`\u002F`\u003CContent>` items.\n3. Only flag the import if the target path is missing from **both** the source tree *and* the projected package layout.\n\nSee also `msbuild-antipatterns` AP-13 (\"NuGet package forwarders\" exception).\n\n## Import Guard Pattern\n\nThe `.targets` file ensures `.props` was imported using a guard property:\n\n```xml\n\u003C!-- End of Microsoft.Common.props -->\n\u003CPropertyGroup>\n  \u003CMicrosoftCommonPropsHasBeenImported>true\u003C\u002FMicrosoftCommonPropsHasBeenImported>\n\u003C\u002FPropertyGroup>\n\n\u003C!-- Top of Microsoft.Common.CurrentVersion.targets -->\n\u003CImport Project=\"Microsoft.Common.props\"\n    Condition=\"'$(MicrosoftCommonPropsHasBeenImported)' != 'true'\" \u002F>\n```\n\nThis handles projects that only import `.targets`.\n\n## Directory.Build Discovery\n\nMSBuild walks up the directory tree to find the nearest `Directory.Build.props`:\n\n```xml\n\u003C_DirectoryBuildPropsBasePath>\n  $([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildProjectDirectory)', 'Directory.Build.props'))\n\u003C\u002F_DirectoryBuildPropsBasePath>\n```\n\nOnly the **nearest** file is discovered. Nested hierarchies must explicitly import parents:\n\n```xml\n\u003C!-- src\u002FDirectory.Build.props -->\n\u003CPropertyGroup>\n  \u003C_ParentPropsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\u002F'))\u003C\u002F_ParentPropsPath>\n\u003C\u002FPropertyGroup>\n\u003CImport Project=\"$(_ParentPropsPath)\" Condition=\"'$(_ParentPropsPath)' != ''\" \u002F>\n```\n\n## Creating Your Own Extension Point\n\n```xml\n\u003C!-- MySDK.targets -->\n\u003CProject>\n  \u003CImport Project=\"MySDK.props\" Condition=\"'$(MySDKPropsImported)' != 'true'\" \u002F>\n\n  \u003CPropertyGroup>\n    \u003CCustomBeforeMySDK Condition=\"'$(CustomBeforeMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.Before.targets\u003C\u002FCustomBeforeMySDK>\n    \u003CCustomAfterMySDK Condition=\"'$(CustomAfterMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.After.targets\u003C\u002FCustomAfterMySDK>\n  \u003C\u002FPropertyGroup>\n\n  \u003CImport Project=\"$(CustomBeforeMySDK)\" Condition=\"Exists('$(CustomBeforeMySDK)')\" \u002F>\n\n  \u003CPropertyGroup>\n    \u003CMySDKBuildDependsOn>BeforeMySDKBuild;CoreMySDKBuild;AfterMySDKBuild\u003C\u002FMySDKBuildDependsOn>\n  \u003C\u002FPropertyGroup>\n  \u003CTarget Name=\"MySDKBuild\" DependsOnTargets=\"$(MySDKBuildDependsOn)\" \u002F>\n  \u003CTarget Name=\"BeforeMySDKBuild\" \u002F>\n  \u003CTarget Name=\"AfterMySDKBuild\" \u002F>\n  \u003CTarget Name=\"CoreMySDKBuild\">\n    \u003C!-- implementation -->\n  \u003C\u002FTarget>\n\n  \u003CImport Project=\"$(CustomAfterMySDK)\" Condition=\"Exists('$(CustomAfterMySDK)')\" \u002F>\n\u003C\u002FProject>\n```\n\n## Common Pitfalls\n\n- **Missing `Exists()` on optional imports** causes build failures when files are absent. **Exception**: imports inside published `build\u002F\u003Ctfm>\u002F` and `buildTransitive\u002F\u003Ctfm>\u002F` folders of a NuGet package are a package contract — the target is guaranteed by the packed layout (see \"Source Tree vs Packed Layout\" above). Don't guard them and don't flag them.\n- **Overwriting Custom* properties** drops prior hooks. Append with `;` separator.\n- **NuGet package file names not matching package ID** silently skips the import.\n- **Nested Directory.Build.props** without parent import loses repo-root settings.\n",{"data":32,"body":33},{"name":4,"description":6,"license":22},{"type":34,"children":35},"root",[36,45,51,58,72,185,192,234,278,284,289,320,326,435,456,462,467,520,526,663,669,690,700,705,742,762,822,937,960,966,993,998,1300,1306,1334,1373,1399,1485,1498,1504,1524,1592,1603,1609,1622,1653,1665,1710,1716,1911,1917,2000],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"msbuild-extension-points",[42],{"type":43,"value":44},"text","MSBuild Extension Points",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49],{"type":43,"value":50},"How the MSBuild pipeline provides hooks for SDKs, NuGet packages, repos, and users to inject custom logic.",{"type":37,"tag":52,"props":53,"children":55},"h2",{"id":54},"custombefore-customafter-hooks",[56],{"type":43,"value":57},"CustomBefore \u002F CustomAfter Hooks",{"type":37,"tag":46,"props":59,"children":60},{},[61,63,70],{"type":43,"value":62},"Every major ",{"type":37,"tag":64,"props":65,"children":67},"code",{"className":66},[],[68],{"type":43,"value":69},".targets",{"type":43,"value":71}," file defines import hooks:",{"type":37,"tag":73,"props":74,"children":79},"pre",{"className":75,"code":76,"language":77,"meta":78,"style":78},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CPropertyGroup>\n  \u003CCustomBeforeMicrosoftCommonTargets Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' == ''\">\n    $(MSBuildExtensionsPath)\\v$(MSBuildToolsVersion)\\Custom.Before.Microsoft.Common.targets\n  \u003C\u002FCustomBeforeMicrosoftCommonTargets>\n\u003C\u002FPropertyGroup>\n\n\u003CImport Project=\"$(CustomBeforeMicrosoftCommonTargets)\"\n    Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' != '' and Exists('$(CustomBeforeMicrosoftCommonTargets)')\"\u002F>\n\u003C!-- ... core targets ... -->\n\u003CImport Project=\"$(CustomAfterMicrosoftCommonTargets)\"\n    Condition=\"'$(CustomAfterMicrosoftCommonTargets)' != '' and Exists('$(CustomAfterMicrosoftCommonTargets)')\"\u002F>\n","xml","",[80],{"type":37,"tag":64,"props":81,"children":82},{"__ignoreMap":78},[83,94,103,112,121,130,140,149,158,167,176],{"type":37,"tag":84,"props":85,"children":88},"span",{"class":86,"line":87},"line",1,[89],{"type":37,"tag":84,"props":90,"children":91},{},[92],{"type":43,"value":93},"\u003CPropertyGroup>\n",{"type":37,"tag":84,"props":95,"children":97},{"class":86,"line":96},2,[98],{"type":37,"tag":84,"props":99,"children":100},{},[101],{"type":43,"value":102},"  \u003CCustomBeforeMicrosoftCommonTargets Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' == ''\">\n",{"type":37,"tag":84,"props":104,"children":106},{"class":86,"line":105},3,[107],{"type":37,"tag":84,"props":108,"children":109},{},[110],{"type":43,"value":111},"    $(MSBuildExtensionsPath)\\v$(MSBuildToolsVersion)\\Custom.Before.Microsoft.Common.targets\n",{"type":37,"tag":84,"props":113,"children":115},{"class":86,"line":114},4,[116],{"type":37,"tag":84,"props":117,"children":118},{},[119],{"type":43,"value":120},"  \u003C\u002FCustomBeforeMicrosoftCommonTargets>\n",{"type":37,"tag":84,"props":122,"children":124},{"class":86,"line":123},5,[125],{"type":37,"tag":84,"props":126,"children":127},{},[128],{"type":43,"value":129},"\u003C\u002FPropertyGroup>\n",{"type":37,"tag":84,"props":131,"children":133},{"class":86,"line":132},6,[134],{"type":37,"tag":84,"props":135,"children":137},{"emptyLinePlaceholder":136},true,[138],{"type":43,"value":139},"\n",{"type":37,"tag":84,"props":141,"children":143},{"class":86,"line":142},7,[144],{"type":37,"tag":84,"props":145,"children":146},{},[147],{"type":43,"value":148},"\u003CImport Project=\"$(CustomBeforeMicrosoftCommonTargets)\"\n",{"type":37,"tag":84,"props":150,"children":152},{"class":86,"line":151},8,[153],{"type":37,"tag":84,"props":154,"children":155},{},[156],{"type":43,"value":157},"    Condition=\"'$(CustomBeforeMicrosoftCommonTargets)' != '' and Exists('$(CustomBeforeMicrosoftCommonTargets)')\"\u002F>\n",{"type":37,"tag":84,"props":159,"children":161},{"class":86,"line":160},9,[162],{"type":37,"tag":84,"props":163,"children":164},{},[165],{"type":43,"value":166},"\u003C!-- ... core targets ... -->\n",{"type":37,"tag":84,"props":168,"children":170},{"class":86,"line":169},10,[171],{"type":37,"tag":84,"props":172,"children":173},{},[174],{"type":43,"value":175},"\u003CImport Project=\"$(CustomAfterMicrosoftCommonTargets)\"\n",{"type":37,"tag":84,"props":177,"children":179},{"class":86,"line":178},11,[180],{"type":37,"tag":84,"props":181,"children":182},{},[183],{"type":43,"value":184},"    Condition=\"'$(CustomAfterMicrosoftCommonTargets)' != '' and Exists('$(CustomAfterMicrosoftCommonTargets)')\"\u002F>\n",{"type":37,"tag":186,"props":187,"children":189},"h3",{"id":188},"rules",[190],{"type":43,"value":191},"Rules",{"type":37,"tag":193,"props":194,"children":195},"ul",{},[196,210,223],{"type":37,"tag":197,"props":198,"children":199},"li",{},[200,202,208],{"type":43,"value":201},"Default path includes version (",{"type":37,"tag":64,"props":203,"children":205},{"className":204},[],[206],{"type":43,"value":207},"v$(MSBuildToolsVersion)",{"type":43,"value":209},") for side-by-side installations.",{"type":37,"tag":197,"props":211,"children":212},{},[213,215,221],{"type":43,"value":214},"Always check ",{"type":37,"tag":64,"props":216,"children":218},{"className":217},[],[219],{"type":43,"value":220},"Exists()",{"type":43,"value":222},". The file may not be present on every machine.",{"type":37,"tag":197,"props":224,"children":225},{},[226,232],{"type":37,"tag":227,"props":228,"children":229},"strong",{},[230],{"type":43,"value":231},"Append",{"type":43,"value":233}," to the property (don't overwrite) to chain multiple hooks:",{"type":37,"tag":73,"props":235,"children":237},{"className":75,"code":236,"language":77,"meta":78,"style":78},"\u003CPropertyGroup>\n  \u003CCustomBeforeMicrosoftCommonTargets>\n    $(CustomBeforeMicrosoftCommonTargets);$(MSBuildThisFileDirectory)MyExtension.targets\n  \u003C\u002FCustomBeforeMicrosoftCommonTargets>\n\u003C\u002FPropertyGroup>\n",[238],{"type":37,"tag":64,"props":239,"children":240},{"__ignoreMap":78},[241,248,256,264,271],{"type":37,"tag":84,"props":242,"children":243},{"class":86,"line":87},[244],{"type":37,"tag":84,"props":245,"children":246},{},[247],{"type":43,"value":93},{"type":37,"tag":84,"props":249,"children":250},{"class":86,"line":96},[251],{"type":37,"tag":84,"props":252,"children":253},{},[254],{"type":43,"value":255},"  \u003CCustomBeforeMicrosoftCommonTargets>\n",{"type":37,"tag":84,"props":257,"children":258},{"class":86,"line":105},[259],{"type":37,"tag":84,"props":260,"children":261},{},[262],{"type":43,"value":263},"    $(CustomBeforeMicrosoftCommonTargets);$(MSBuildThisFileDirectory)MyExtension.targets\n",{"type":37,"tag":84,"props":265,"children":266},{"class":86,"line":114},[267],{"type":37,"tag":84,"props":268,"children":269},{},[270],{"type":43,"value":120},{"type":37,"tag":84,"props":272,"children":273},{"class":86,"line":123},[274],{"type":37,"tag":84,"props":275,"children":276},{},[277],{"type":43,"value":129},{"type":37,"tag":52,"props":279,"children":281},{"id":280},"wildcard-import-directories",[282],{"type":43,"value":283},"Wildcard Import Directories",{"type":37,"tag":46,"props":285,"children":286},{},[287],{"type":43,"value":288},"MSBuild imports all files in extension directories, sorted alphabetically:",{"type":37,"tag":73,"props":290,"children":292},{"className":75,"code":291,"language":77,"meta":78,"style":78},"\u003CImport Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore\\*\"\n    Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == 'true'\n               and Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore')\" \u002F>\n",[293],{"type":37,"tag":64,"props":294,"children":295},{"__ignoreMap":78},[296,304,312],{"type":37,"tag":84,"props":297,"children":298},{"class":86,"line":87},[299],{"type":37,"tag":84,"props":300,"children":301},{},[302],{"type":43,"value":303},"\u003CImport Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore\\*\"\n",{"type":37,"tag":84,"props":305,"children":306},{"class":86,"line":96},[307],{"type":37,"tag":84,"props":308,"children":309},{},[310],{"type":43,"value":311},"    Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == 'true'\n",{"type":37,"tag":84,"props":313,"children":314},{"class":86,"line":105},[315],{"type":37,"tag":84,"props":316,"children":317},{},[318],{"type":43,"value":319},"               and Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Imports\\Microsoft.Common.props\\ImportBefore')\" \u002F>\n",{"type":37,"tag":186,"props":321,"children":323},{"id":322},"key-paths",[324],{"type":43,"value":325},"Key paths",{"type":37,"tag":327,"props":328,"children":329},"table",{},[330,354],{"type":37,"tag":331,"props":332,"children":333},"thead",{},[334],{"type":37,"tag":335,"props":336,"children":337},"tr",{},[338,344,349],{"type":37,"tag":339,"props":340,"children":341},"th",{},[342],{"type":43,"value":343},"Property",{"type":37,"tag":339,"props":345,"children":346},{},[347],{"type":43,"value":348},"Resolves to",{"type":37,"tag":339,"props":350,"children":351},{},[352],{"type":43,"value":353},"Scope",{"type":37,"tag":355,"props":356,"children":357},"tbody",{},[358,385,407],{"type":37,"tag":335,"props":359,"children":360},{},[361,371,380],{"type":37,"tag":362,"props":363,"children":364},"td",{},[365],{"type":37,"tag":64,"props":366,"children":368},{"className":367},[],[369],{"type":43,"value":370},"$(MSBuildUserExtensionsPath)",{"type":37,"tag":362,"props":372,"children":373},{},[374],{"type":37,"tag":64,"props":375,"children":377},{"className":376},[],[378],{"type":43,"value":379},"%APPDATA%\\Microsoft\\MSBuild",{"type":37,"tag":362,"props":381,"children":382},{},[383],{"type":43,"value":384},"Per-user",{"type":37,"tag":335,"props":386,"children":387},{},[388,397,402],{"type":37,"tag":362,"props":389,"children":390},{},[391],{"type":37,"tag":64,"props":392,"children":394},{"className":393},[],[395],{"type":43,"value":396},"$(MSBuildExtensionsPath)",{"type":37,"tag":362,"props":398,"children":399},{},[400],{"type":43,"value":401},"MSBuild install directory",{"type":37,"tag":362,"props":403,"children":404},{},[405],{"type":43,"value":406},"Machine-wide",{"type":37,"tag":335,"props":408,"children":409},{},[410,419,430],{"type":37,"tag":362,"props":411,"children":412},{},[413],{"type":37,"tag":64,"props":414,"children":416},{"className":415},[],[417],{"type":43,"value":418},"$(MSBuildProjectExtensionsPath)",{"type":37,"tag":362,"props":420,"children":421},{},[422,428],{"type":37,"tag":64,"props":423,"children":425},{"className":424},[],[426],{"type":43,"value":427},"obj\u002F",{"type":43,"value":429}," directory",{"type":37,"tag":362,"props":431,"children":432},{},[433],{"type":43,"value":434},"Per-project (NuGet)",{"type":37,"tag":46,"props":436,"children":437},{},[438,440,446,448,454],{"type":43,"value":439},"Name files with numeric prefixes for ordering: ",{"type":37,"tag":64,"props":441,"children":443},{"className":442},[],[444],{"type":43,"value":445},"01-first.props",{"type":43,"value":447},", ",{"type":37,"tag":64,"props":449,"children":451},{"className":450},[],[452],{"type":43,"value":453},"02-second.props",{"type":43,"value":455},".",{"type":37,"tag":52,"props":457,"children":459},{"id":458},"import-gating-control-properties",[460],{"type":43,"value":461},"Import Gating — Control Properties",{"type":37,"tag":46,"props":463,"children":464},{},[465],{"type":43,"value":466},"Every wildcard import is gated by a boolean property:",{"type":37,"tag":73,"props":468,"children":470},{"className":75,"code":469,"language":77,"meta":78,"style":78},"\u003CPropertyGroup>\n  \u003CImportByWildcardBeforeMicrosoftCommonProps\n      Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == ''\">true\u003C\u002FImportByWildcardBeforeMicrosoftCommonProps>\n  \u003CImportDirectoryBuildProps\n      Condition=\"'$(ImportDirectoryBuildProps)' == ''\">true\u003C\u002FImportDirectoryBuildProps>\n\u003C\u002FPropertyGroup>\n",[471],{"type":37,"tag":64,"props":472,"children":473},{"__ignoreMap":78},[474,481,489,497,505,513],{"type":37,"tag":84,"props":475,"children":476},{"class":86,"line":87},[477],{"type":37,"tag":84,"props":478,"children":479},{},[480],{"type":43,"value":93},{"type":37,"tag":84,"props":482,"children":483},{"class":86,"line":96},[484],{"type":37,"tag":84,"props":485,"children":486},{},[487],{"type":43,"value":488},"  \u003CImportByWildcardBeforeMicrosoftCommonProps\n",{"type":37,"tag":84,"props":490,"children":491},{"class":86,"line":105},[492],{"type":37,"tag":84,"props":493,"children":494},{},[495],{"type":43,"value":496},"      Condition=\"'$(ImportByWildcardBeforeMicrosoftCommonProps)' == ''\">true\u003C\u002FImportByWildcardBeforeMicrosoftCommonProps>\n",{"type":37,"tag":84,"props":498,"children":499},{"class":86,"line":114},[500],{"type":37,"tag":84,"props":501,"children":502},{},[503],{"type":43,"value":504},"  \u003CImportDirectoryBuildProps\n",{"type":37,"tag":84,"props":506,"children":507},{"class":86,"line":123},[508],{"type":37,"tag":84,"props":509,"children":510},{},[511],{"type":43,"value":512},"      Condition=\"'$(ImportDirectoryBuildProps)' == ''\">true\u003C\u002FImportDirectoryBuildProps>\n",{"type":37,"tag":84,"props":514,"children":515},{"class":86,"line":132},[516],{"type":37,"tag":84,"props":517,"children":518},{},[519],{"type":43,"value":129},{"type":37,"tag":186,"props":521,"children":523},{"id":522},"available-control-properties",[524],{"type":43,"value":525},"Available control properties",{"type":37,"tag":327,"props":527,"children":528},{},[529,544],{"type":37,"tag":331,"props":530,"children":531},{},[532],{"type":37,"tag":335,"props":533,"children":534},{},[535,539],{"type":37,"tag":339,"props":536,"children":537},{},[538],{"type":43,"value":343},{"type":37,"tag":339,"props":540,"children":541},{},[542],{"type":43,"value":543},"What it disables",{"type":37,"tag":355,"props":545,"children":546},{},[547,564,581,606,629,646],{"type":37,"tag":335,"props":548,"children":549},{},[550,559],{"type":37,"tag":362,"props":551,"children":552},{},[553],{"type":37,"tag":64,"props":554,"children":556},{"className":555},[],[557],{"type":43,"value":558},"ImportDirectoryBuildProps",{"type":37,"tag":362,"props":560,"children":561},{},[562],{"type":43,"value":563},"Directory.Build.props auto-discovery",{"type":37,"tag":335,"props":565,"children":566},{},[567,576],{"type":37,"tag":362,"props":568,"children":569},{},[570],{"type":37,"tag":64,"props":571,"children":573},{"className":572},[],[574],{"type":43,"value":575},"ImportDirectoryBuildTargets",{"type":37,"tag":362,"props":577,"children":578},{},[579],{"type":43,"value":580},"Directory.Build.targets auto-discovery",{"type":37,"tag":335,"props":582,"children":583},{},[584,593],{"type":37,"tag":362,"props":585,"children":586},{},[587],{"type":37,"tag":64,"props":588,"children":590},{"className":589},[],[591],{"type":43,"value":592},"ImportProjectExtensionProps",{"type":37,"tag":362,"props":594,"children":595},{},[596,598,604],{"type":43,"value":597},"NuGet-generated ",{"type":37,"tag":64,"props":599,"children":601},{"className":600},[],[602],{"type":43,"value":603},"*.props",{"type":43,"value":605}," in obj\u002F",{"type":37,"tag":335,"props":607,"children":608},{},[609,618],{"type":37,"tag":362,"props":610,"children":611},{},[612],{"type":37,"tag":64,"props":613,"children":615},{"className":614},[],[616],{"type":43,"value":617},"ImportProjectExtensionTargets",{"type":37,"tag":362,"props":619,"children":620},{},[621,622,628],{"type":43,"value":597},{"type":37,"tag":64,"props":623,"children":625},{"className":624},[],[626],{"type":43,"value":627},"*.targets",{"type":43,"value":605},{"type":37,"tag":335,"props":630,"children":631},{},[632,641],{"type":37,"tag":362,"props":633,"children":634},{},[635],{"type":37,"tag":64,"props":636,"children":638},{"className":637},[],[639],{"type":43,"value":640},"ImportByWildcardBefore*",{"type":37,"tag":362,"props":642,"children":643},{},[644],{"type":43,"value":645},"Machine-level ImportBefore extensions",{"type":37,"tag":335,"props":647,"children":648},{},[649,658],{"type":37,"tag":362,"props":650,"children":651},{},[652],{"type":37,"tag":64,"props":653,"children":655},{"className":654},[],[656],{"type":43,"value":657},"ImportByWildcardAfter*",{"type":37,"tag":362,"props":659,"children":660},{},[661],{"type":43,"value":662},"Machine-level ImportAfter extensions",{"type":37,"tag":52,"props":664,"children":666},{"id":665},"nuget-package-build-extension-layout",[667],{"type":43,"value":668},"NuGet Package Build Extension Layout",{"type":37,"tag":46,"props":670,"children":671},{},[672,674,680,682,688],{"type":43,"value":673},"NuGet packages inject build logic via ",{"type":37,"tag":64,"props":675,"children":677},{"className":676},[],[678],{"type":43,"value":679},"build\u002F",{"type":43,"value":681}," or ",{"type":37,"tag":64,"props":683,"children":685},{"className":684},[],[686],{"type":43,"value":687},"buildTransitive\u002F",{"type":43,"value":689}," folders:",{"type":37,"tag":73,"props":691,"children":695},{"className":692,"code":694,"language":43,"meta":78},[693],"language-text","MyPackage\u002F\n  build\u002F\n    MyPackage.props      ← imported via *.props wildcard\n    MyPackage.targets    ← imported via *.targets wildcard\n  buildTransitive\u002F\n    MyPackage.props      ← imported by transitive consumers\n    MyPackage.targets\n",[696],{"type":37,"tag":64,"props":697,"children":698},{"__ignoreMap":78},[699],{"type":43,"value":694},{"type":37,"tag":186,"props":701,"children":703},{"id":702},"rules-1",[704],{"type":43,"value":191},{"type":37,"tag":193,"props":706,"children":707},{},[708,720,737],{"type":37,"tag":197,"props":709,"children":710},{},[711,713,718],{"type":43,"value":712},"File names ",{"type":37,"tag":227,"props":714,"children":715},{},[716],{"type":43,"value":717},"must match the package ID",{"type":43,"value":719}," exactly.",{"type":37,"tag":197,"props":721,"children":722},{},[723,728,730,735],{"type":37,"tag":64,"props":724,"children":726},{"className":725},[],[727],{"type":43,"value":679},{"type":43,"value":729}," affects direct consumers only. ",{"type":37,"tag":64,"props":731,"children":733},{"className":732},[],[734],{"type":43,"value":687},{"type":43,"value":736}," affects the entire dependency chain.",{"type":37,"tag":197,"props":738,"children":739},{},[740],{"type":43,"value":741},"Props are imported early (before the project), targets are imported late (after the project).",{"type":37,"tag":186,"props":743,"children":745},{"id":744},"forwarding-chain-buildtransitive-build-shared",[746,748,753,755,760],{"type":43,"value":747},"Forwarding chain: ",{"type":37,"tag":64,"props":749,"children":751},{"className":750},[],[752],{"type":43,"value":687},{"type":43,"value":754}," → ",{"type":37,"tag":64,"props":756,"children":758},{"className":757},[],[759],{"type":43,"value":679},{"type":43,"value":761}," → shared",{"type":37,"tag":46,"props":763,"children":764},{},[765,767,773,775,781,783,789,791,797,799,805,807,813,815,820],{"type":43,"value":766},"Forward ",{"type":37,"tag":64,"props":768,"children":770},{"className":769},[],[771],{"type":43,"value":772},"buildTransitive\u002F*.props",{"type":43,"value":774}," and ",{"type":37,"tag":64,"props":776,"children":778},{"className":777},[],[779],{"type":43,"value":780},"buildTransitive\u002F*.targets",{"type":43,"value":782}," through their sibling ",{"type":37,"tag":64,"props":784,"children":786},{"className":785},[],[787],{"type":43,"value":788},"build\u002F*.props",{"type":43,"value":790}," \u002F ",{"type":37,"tag":64,"props":792,"children":794},{"className":793},[],[795],{"type":43,"value":796},"build\u002F*.targets",{"type":43,"value":798}," files (chain ",{"type":37,"tag":64,"props":800,"children":802},{"className":801},[],[803],{"type":43,"value":804},"buildTransitive → build → shared",{"type":43,"value":806},") instead of importing ",{"type":37,"tag":64,"props":808,"children":810},{"className":809},[],[811],{"type":43,"value":812},"buildMultiTargeting\u002F",{"type":43,"value":814}," directly. This keeps ",{"type":37,"tag":64,"props":816,"children":818},{"className":817},[],[819],{"type":43,"value":679},{"type":43,"value":821}," as the single source of truth with a clear ownership chain, so transitive consumers stay in sync with direct consumers instead of the two layouts drifting apart.",{"type":37,"tag":46,"props":823,"children":824},{},[825,827,832,834,839,841,847,849,855,857,863,865,870,872,878,880,885,887,893,895,904,906,912,914,920,922,928,930,935],{"type":43,"value":826},"When ",{"type":37,"tag":64,"props":828,"children":830},{"className":829},[],[831],{"type":43,"value":679},{"type":43,"value":833}," is packed ",{"type":37,"tag":227,"props":835,"children":836},{},[837],{"type":43,"value":838},"per-TFM",{"type":43,"value":840}," (",{"type":37,"tag":64,"props":842,"children":844},{"className":843},[],[845],{"type":43,"value":846},"build\u002F\u003Ctfm>\u002F",{"type":43,"value":848},", via ",{"type":37,"tag":64,"props":850,"children":852},{"className":851},[],[853],{"type":43,"value":854},"TfmSpecificPackageFile",{"type":43,"value":856},", a per-TFM ",{"type":37,"tag":64,"props":858,"children":860},{"className":859},[],[861],{"type":43,"value":862},"\u003CPackagePath>",{"type":43,"value":864},", or SDK conventions) while ",{"type":37,"tag":64,"props":866,"children":868},{"className":867},[],[869],{"type":43,"value":812},{"type":43,"value":871}," is not, a ",{"type":37,"tag":64,"props":873,"children":875},{"className":874},[],[876],{"type":43,"value":877},"buildTransitive\u002F\u003Ctfm>\u002F",{"type":43,"value":879}," forwarder ",{"type":37,"tag":227,"props":881,"children":882},{},[883],{"type":43,"value":884},"must include the TFM segment",{"type":43,"value":886}," — dropping it resolves to a non-existent package-root ",{"type":37,"tag":64,"props":888,"children":890},{"className":889},[],[891],{"type":43,"value":892},"build\u002FMyPackage.props",{"type":43,"value":894}," and fails transitive consumers with ",{"type":37,"tag":227,"props":896,"children":897},{},[898],{"type":37,"tag":64,"props":899,"children":901},{"className":900},[],[902],{"type":43,"value":903},"MSB4019",{"type":43,"value":905},". Derive the segment from the file's own folder, never ",{"type":37,"tag":64,"props":907,"children":909},{"className":908},[],[910],{"type":43,"value":911},"$(TargetFramework)",{"type":43,"value":913}," (NuGet nearest-match can serve a ",{"type":37,"tag":64,"props":915,"children":917},{"className":916},[],[918],{"type":43,"value":919},"net10.0",{"type":43,"value":921}," consumer the ",{"type":37,"tag":64,"props":923,"children":925},{"className":924},[],[926],{"type":43,"value":927},"net9.0",{"type":43,"value":929}," folder, so ",{"type":37,"tag":64,"props":931,"children":933},{"className":932},[],[934],{"type":43,"value":911},{"type":43,"value":936}," may name a folder that was never restored):",{"type":37,"tag":73,"props":938,"children":940},{"className":75,"code":939,"language":77,"meta":78,"style":78},"\u003C!-- buildTransitive\u002F\u003Ctfm>\u002FMyPackage.props -->\n\u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\build\\$([System.IO.Path]::GetFileName($([System.IO.Path]::GetDirectoryName('$(MSBuildThisFileDirectory)'))))\\MyPackage.props\" \u002F>\n",[941],{"type":37,"tag":64,"props":942,"children":943},{"__ignoreMap":78},[944,952],{"type":37,"tag":84,"props":945,"children":946},{"class":86,"line":87},[947],{"type":37,"tag":84,"props":948,"children":949},{},[950],{"type":43,"value":951},"\u003C!-- buildTransitive\u002F\u003Ctfm>\u002FMyPackage.props -->\n",{"type":37,"tag":84,"props":953,"children":954},{"class":86,"line":96},[955],{"type":37,"tag":84,"props":956,"children":957},{},[958],{"type":43,"value":959},"\u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\build\\$([System.IO.Path]::GetFileName($([System.IO.Path]::GetDirectoryName('$(MSBuildThisFileDirectory)'))))\\MyPackage.props\" \u002F>\n",{"type":37,"tag":52,"props":961,"children":963},{"id":962},"source-tree-vs-packed-layout",[964],{"type":43,"value":965},"Source Tree vs Packed Layout",{"type":37,"tag":46,"props":967,"children":968},{},[969,971,976,978,983,985,991],{"type":43,"value":970},"When reviewing a NuGet build-extension package, the ",{"type":37,"tag":227,"props":972,"children":973},{},[974],{"type":43,"value":975},"source layout",{"type":43,"value":977}," in the repository can legitimately differ from the ",{"type":37,"tag":227,"props":979,"children":980},{},[981],{"type":43,"value":982},"packed layout",{"type":43,"value":984}," inside the produced ",{"type":37,"tag":64,"props":986,"children":988},{"className":987},[],[989],{"type":43,"value":990},".nupkg",{"type":43,"value":992},". This is a common source of false-positive \"import points at a missing file\" findings.",{"type":37,"tag":46,"props":994,"children":995},{},[996],{"type":43,"value":997},"Three packaging mechanisms reshape the layout at pack time:",{"type":37,"tag":999,"props":1000,"children":1001},"ol",{},[1002,1166,1255],{"type":37,"tag":197,"props":1003,"children":1004},{},[1005,1024,1026,1121,1125,1127,1133,1135,1141,1143,1149,1151,1157,1159,1164],{"type":37,"tag":227,"props":1006,"children":1007},{},[1008,1014,1016,1022],{"type":37,"tag":64,"props":1009,"children":1011},{"className":1010},[],[1012],{"type":43,"value":1013},".nuspec",{"type":43,"value":1015}," ",{"type":37,"tag":64,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":43,"value":1021},"\u003Cfile src=… target=…>",{"type":43,"value":1023}," mappings",{"type":43,"value":1025}," — copy a single source file into multiple per-TFM targets:",{"type":37,"tag":73,"props":1027,"children":1029},{"className":75,"code":1028,"language":77,"meta":78,"style":78},"\u003C!-- Source tree has ONE shared file:\n       buildTransitive\\common\\MyAdapter.props\n     Pack rewrites it to per-TFM targets inside the .nupkg:\n       buildTransitive\\net462\\MyAdapter.props\n       buildTransitive\\net8.0\\MyAdapter.props\n       buildTransitive\\net9.0\\MyAdapter.props -->\n\u003Cfiles>\n  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net462\\MyAdapter.props\" \u002F>\n  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n\u003C\u002Ffiles>\n",[1030],{"type":37,"tag":64,"props":1031,"children":1032},{"__ignoreMap":78},[1033,1041,1049,1057,1065,1073,1081,1089,1097,1105,1113],{"type":37,"tag":84,"props":1034,"children":1035},{"class":86,"line":87},[1036],{"type":37,"tag":84,"props":1037,"children":1038},{},[1039],{"type":43,"value":1040},"\u003C!-- Source tree has ONE shared file:\n",{"type":37,"tag":84,"props":1042,"children":1043},{"class":86,"line":96},[1044],{"type":37,"tag":84,"props":1045,"children":1046},{},[1047],{"type":43,"value":1048},"       buildTransitive\\common\\MyAdapter.props\n",{"type":37,"tag":84,"props":1050,"children":1051},{"class":86,"line":105},[1052],{"type":37,"tag":84,"props":1053,"children":1054},{},[1055],{"type":43,"value":1056},"     Pack rewrites it to per-TFM targets inside the .nupkg:\n",{"type":37,"tag":84,"props":1058,"children":1059},{"class":86,"line":114},[1060],{"type":37,"tag":84,"props":1061,"children":1062},{},[1063],{"type":43,"value":1064},"       buildTransitive\\net462\\MyAdapter.props\n",{"type":37,"tag":84,"props":1066,"children":1067},{"class":86,"line":123},[1068],{"type":37,"tag":84,"props":1069,"children":1070},{},[1071],{"type":43,"value":1072},"       buildTransitive\\net8.0\\MyAdapter.props\n",{"type":37,"tag":84,"props":1074,"children":1075},{"class":86,"line":132},[1076],{"type":37,"tag":84,"props":1077,"children":1078},{},[1079],{"type":43,"value":1080},"       buildTransitive\\net9.0\\MyAdapter.props -->\n",{"type":37,"tag":84,"props":1082,"children":1083},{"class":86,"line":142},[1084],{"type":37,"tag":84,"props":1085,"children":1086},{},[1087],{"type":43,"value":1088},"\u003Cfiles>\n",{"type":37,"tag":84,"props":1090,"children":1091},{"class":86,"line":151},[1092],{"type":37,"tag":84,"props":1093,"children":1094},{},[1095],{"type":43,"value":1096},"  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net462\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1098,"children":1099},{"class":86,"line":160},[1100],{"type":37,"tag":84,"props":1101,"children":1102},{},[1103],{"type":43,"value":1104},"  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1106,"children":1107},{"class":86,"line":169},[1108],{"type":37,"tag":84,"props":1109,"children":1110},{},[1111],{"type":43,"value":1112},"  \u003Cfile src=\"buildTransitive\\common\\MyAdapter.props\" target=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1114,"children":1115},{"class":86,"line":178},[1116],{"type":37,"tag":84,"props":1117,"children":1118},{},[1119],{"type":43,"value":1120},"\u003C\u002Ffiles>\n",{"type":37,"tag":1122,"props":1123,"children":1124},"br",{},[],{"type":43,"value":1126},"In the ",{"type":37,"tag":64,"props":1128,"children":1130},{"className":1129},[],[1131],{"type":43,"value":1132},"\u003Cfile>",{"type":43,"value":1134}," element, a ",{"type":37,"tag":64,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":43,"value":1140},"target",{"type":43,"value":1142}," ending in ",{"type":37,"tag":64,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":43,"value":1148},"\\",{"type":43,"value":1150}," is treated as a folder (filename preserved from ",{"type":37,"tag":64,"props":1152,"children":1154},{"className":1153},[],[1155],{"type":43,"value":1156},"src",{"type":43,"value":1158},"); a ",{"type":37,"tag":64,"props":1160,"children":1162},{"className":1161},[],[1163],{"type":43,"value":1140},{"type":43,"value":1165}," ending in a filename renames the file.",{"type":37,"tag":197,"props":1167,"children":1168},{},[1169,1186,1188,1194,1195,1201,1203,1242,1245,1247,1253],{"type":37,"tag":227,"props":1170,"children":1171},{},[1172,1178,1179,1184],{"type":37,"tag":64,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":43,"value":1177},".csproj",{"type":43,"value":1015},{"type":37,"tag":64,"props":1180,"children":1182},{"className":1181},[],[1183],{"type":43,"value":862},{"type":43,"value":1185}," metadata",{"type":43,"value":1187}," on ",{"type":37,"tag":64,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":43,"value":1193},"\u003CNone Update=…>",{"type":43,"value":681},{"type":37,"tag":64,"props":1196,"children":1198},{"className":1197},[],[1199],{"type":43,"value":1200},"\u003CContent Include=…>",{"type":43,"value":1202}," items — same effect via SDK pack. Use one item per destination to keep the mapping unambiguous:",{"type":37,"tag":73,"props":1204,"children":1206},{"className":75,"code":1205,"language":77,"meta":78,"style":78},"\u003CItemGroup>\n  \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n  \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n\u003C\u002FItemGroup>\n",[1207],{"type":37,"tag":64,"props":1208,"children":1209},{"__ignoreMap":78},[1210,1218,1226,1234],{"type":37,"tag":84,"props":1211,"children":1212},{"class":86,"line":87},[1213],{"type":37,"tag":84,"props":1214,"children":1215},{},[1216],{"type":43,"value":1217},"\u003CItemGroup>\n",{"type":37,"tag":84,"props":1219,"children":1220},{"class":86,"line":96},[1221],{"type":37,"tag":84,"props":1222,"children":1223},{},[1224],{"type":43,"value":1225},"  \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net8.0\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1227,"children":1228},{"class":86,"line":105},[1229],{"type":37,"tag":84,"props":1230,"children":1231},{},[1232],{"type":43,"value":1233},"  \u003CNone Include=\"buildTransitive\\common\\MyAdapter.props\" Pack=\"true\" PackagePath=\"buildTransitive\\net9.0\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1235,"children":1236},{"class":86,"line":114},[1237],{"type":37,"tag":84,"props":1238,"children":1239},{},[1240],{"type":43,"value":1241},"\u003C\u002FItemGroup>\n",{"type":37,"tag":1122,"props":1243,"children":1244},{},[],{"type":43,"value":1246},"NuGet\u002FSDK pack also accepts a semicolon-separated list (",{"type":37,"tag":64,"props":1248,"children":1250},{"className":1249},[],[1251],{"type":43,"value":1252},"PackagePath=\"buildTransitive\\net8.0\\;buildTransitive\\net9.0\\\"",{"type":43,"value":1254},") to fan one source out to multiple destinations, but the multi-item form above is harder to misread.",{"type":37,"tag":197,"props":1256,"children":1257},{},[1258,1263,1265,1271,1272,1278,1279,1285,1287,1293,1294,1299],{"type":37,"tag":227,"props":1259,"children":1260},{},[1261],{"type":43,"value":1262},"SDK conventions",{"type":43,"value":1264}," — ",{"type":37,"tag":64,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":43,"value":1270},"IncludeBuildOutput",{"type":43,"value":447},{"type":37,"tag":64,"props":1273,"children":1275},{"className":1274},[],[1276],{"type":43,"value":1277},"BuildOutputTargetFolder",{"type":43,"value":447},{"type":37,"tag":64,"props":1280,"children":1282},{"className":1281},[],[1283],{"type":43,"value":1284},"IncludeContentInPack",{"type":43,"value":1286}," automatically place built outputs under ",{"type":37,"tag":64,"props":1288,"children":1290},{"className":1289},[],[1291],{"type":43,"value":1292},"lib\u002F\u003Ctfm>\u002F",{"type":43,"value":681},{"type":37,"tag":64,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":43,"value":846},{"type":43,"value":455},{"type":37,"tag":186,"props":1301,"children":1303},{"id":1302},"implication-for-reviewers",[1304],{"type":43,"value":1305},"Implication for reviewers",{"type":37,"tag":46,"props":1307,"children":1308},{},[1309,1311,1317,1319,1324,1326,1332],{"type":43,"value":1310},"A forwarder like the following inside a packed ",{"type":37,"tag":64,"props":1312,"children":1314},{"className":1313},[],[1315],{"type":43,"value":1316},"build\u002Fnet462\u002F",{"type":43,"value":1318}," folder is ",{"type":37,"tag":227,"props":1320,"children":1321},{},[1322],{"type":43,"value":1323},"not",{"type":43,"value":1325}," a \"missing-file\" bug, even if the source tree has no ",{"type":37,"tag":64,"props":1327,"children":1329},{"className":1328},[],[1330],{"type":43,"value":1331},"buildTransitive\u002Fnet462\u002F",{"type":43,"value":1333}," directory:",{"type":37,"tag":73,"props":1335,"children":1337},{"className":75,"code":1336,"language":77,"meta":78,"style":78},"\u003C!-- In packed build\u002Fnet462\u002FMyAdapter.props -->\n\u003CProject>\n  \u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\buildTransitive\\net462\\MyAdapter.props\" \u002F>\n\u003C\u002FProject>\n",[1338],{"type":37,"tag":64,"props":1339,"children":1340},{"__ignoreMap":78},[1341,1349,1357,1365],{"type":37,"tag":84,"props":1342,"children":1343},{"class":86,"line":87},[1344],{"type":37,"tag":84,"props":1345,"children":1346},{},[1347],{"type":43,"value":1348},"\u003C!-- In packed build\u002Fnet462\u002FMyAdapter.props -->\n",{"type":37,"tag":84,"props":1350,"children":1351},{"class":86,"line":96},[1352],{"type":37,"tag":84,"props":1353,"children":1354},{},[1355],{"type":43,"value":1356},"\u003CProject>\n",{"type":37,"tag":84,"props":1358,"children":1359},{"class":86,"line":105},[1360],{"type":37,"tag":84,"props":1361,"children":1362},{},[1363],{"type":43,"value":1364},"  \u003CImport Project=\"$(MSBuildThisFileDirectory)..\\..\\buildTransitive\\net462\\MyAdapter.props\" \u002F>\n",{"type":37,"tag":84,"props":1366,"children":1367},{"class":86,"line":114},[1368],{"type":37,"tag":84,"props":1369,"children":1370},{},[1371],{"type":43,"value":1372},"\u003C\u002FProject>\n",{"type":37,"tag":46,"props":1374,"children":1375},{},[1376,1378,1384,1386,1391,1392,1397],{"type":43,"value":1377},"Before flagging an unguarded ",{"type":37,"tag":64,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":43,"value":1383},"\u003CImport>",{"type":43,"value":1385}," inside a ",{"type":37,"tag":64,"props":1387,"children":1389},{"className":1388},[],[1390],{"type":43,"value":846},{"type":43,"value":681},{"type":37,"tag":64,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":43,"value":877},{"type":43,"value":1398}," folder:",{"type":37,"tag":999,"props":1400,"children":1401},{},[1402,1430,1465],{"type":37,"tag":197,"props":1403,"children":1404},{},[1405,1407,1413,1415,1421,1423,1428],{"type":43,"value":1406},"Look for ",{"type":37,"tag":64,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":43,"value":1412},"*.nuspec",{"type":43,"value":1414}," in the project directory and its immediate parent directory (do not walk further up). Read every ",{"type":37,"tag":64,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":43,"value":1420},"\u003Cfile target=…>",{"type":43,"value":1422}," whose ",{"type":37,"tag":64,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":43,"value":1140},{"type":43,"value":1429}," matches the imported path.",{"type":37,"tag":197,"props":1431,"children":1432},{},[1433,1435,1440,1442,1447,1449,1455,1457,1463],{"type":43,"value":1434},"Read the ",{"type":37,"tag":64,"props":1436,"children":1438},{"className":1437},[],[1439],{"type":43,"value":1177},{"type":43,"value":1441}," for ",{"type":37,"tag":64,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":43,"value":862},{"type":43,"value":1448}," metadata on ",{"type":37,"tag":64,"props":1450,"children":1452},{"className":1451},[],[1453],{"type":43,"value":1454},"\u003CNone>",{"type":43,"value":1456},"\u002F",{"type":37,"tag":64,"props":1458,"children":1460},{"className":1459},[],[1461],{"type":43,"value":1462},"\u003CContent>",{"type":43,"value":1464}," items.",{"type":37,"tag":197,"props":1466,"children":1467},{},[1468,1470,1475,1477,1483],{"type":43,"value":1469},"Only flag the import if the target path is missing from ",{"type":37,"tag":227,"props":1471,"children":1472},{},[1473],{"type":43,"value":1474},"both",{"type":43,"value":1476}," the source tree ",{"type":37,"tag":1478,"props":1479,"children":1480},"em",{},[1481],{"type":43,"value":1482},"and",{"type":43,"value":1484}," the projected package layout.",{"type":37,"tag":46,"props":1486,"children":1487},{},[1488,1490,1496],{"type":43,"value":1489},"See also ",{"type":37,"tag":64,"props":1491,"children":1493},{"className":1492},[],[1494],{"type":43,"value":1495},"msbuild-antipatterns",{"type":43,"value":1497}," AP-13 (\"NuGet package forwarders\" exception).",{"type":37,"tag":52,"props":1499,"children":1501},{"id":1500},"import-guard-pattern",[1502],{"type":43,"value":1503},"Import Guard Pattern",{"type":37,"tag":46,"props":1505,"children":1506},{},[1507,1509,1514,1516,1522],{"type":43,"value":1508},"The ",{"type":37,"tag":64,"props":1510,"children":1512},{"className":1511},[],[1513],{"type":43,"value":69},{"type":43,"value":1515}," file ensures ",{"type":37,"tag":64,"props":1517,"children":1519},{"className":1518},[],[1520],{"type":43,"value":1521},".props",{"type":43,"value":1523}," was imported using a guard property:",{"type":37,"tag":73,"props":1525,"children":1527},{"className":75,"code":1526,"language":77,"meta":78,"style":78},"\u003C!-- End of Microsoft.Common.props -->\n\u003CPropertyGroup>\n  \u003CMicrosoftCommonPropsHasBeenImported>true\u003C\u002FMicrosoftCommonPropsHasBeenImported>\n\u003C\u002FPropertyGroup>\n\n\u003C!-- Top of Microsoft.Common.CurrentVersion.targets -->\n\u003CImport Project=\"Microsoft.Common.props\"\n    Condition=\"'$(MicrosoftCommonPropsHasBeenImported)' != 'true'\" \u002F>\n",[1528],{"type":37,"tag":64,"props":1529,"children":1530},{"__ignoreMap":78},[1531,1539,1546,1554,1561,1568,1576,1584],{"type":37,"tag":84,"props":1532,"children":1533},{"class":86,"line":87},[1534],{"type":37,"tag":84,"props":1535,"children":1536},{},[1537],{"type":43,"value":1538},"\u003C!-- End of Microsoft.Common.props -->\n",{"type":37,"tag":84,"props":1540,"children":1541},{"class":86,"line":96},[1542],{"type":37,"tag":84,"props":1543,"children":1544},{},[1545],{"type":43,"value":93},{"type":37,"tag":84,"props":1547,"children":1548},{"class":86,"line":105},[1549],{"type":37,"tag":84,"props":1550,"children":1551},{},[1552],{"type":43,"value":1553},"  \u003CMicrosoftCommonPropsHasBeenImported>true\u003C\u002FMicrosoftCommonPropsHasBeenImported>\n",{"type":37,"tag":84,"props":1555,"children":1556},{"class":86,"line":114},[1557],{"type":37,"tag":84,"props":1558,"children":1559},{},[1560],{"type":43,"value":129},{"type":37,"tag":84,"props":1562,"children":1563},{"class":86,"line":123},[1564],{"type":37,"tag":84,"props":1565,"children":1566},{"emptyLinePlaceholder":136},[1567],{"type":43,"value":139},{"type":37,"tag":84,"props":1569,"children":1570},{"class":86,"line":132},[1571],{"type":37,"tag":84,"props":1572,"children":1573},{},[1574],{"type":43,"value":1575},"\u003C!-- Top of Microsoft.Common.CurrentVersion.targets -->\n",{"type":37,"tag":84,"props":1577,"children":1578},{"class":86,"line":142},[1579],{"type":37,"tag":84,"props":1580,"children":1581},{},[1582],{"type":43,"value":1583},"\u003CImport Project=\"Microsoft.Common.props\"\n",{"type":37,"tag":84,"props":1585,"children":1586},{"class":86,"line":151},[1587],{"type":37,"tag":84,"props":1588,"children":1589},{},[1590],{"type":43,"value":1591},"    Condition=\"'$(MicrosoftCommonPropsHasBeenImported)' != 'true'\" \u002F>\n",{"type":37,"tag":46,"props":1593,"children":1594},{},[1595,1597,1602],{"type":43,"value":1596},"This handles projects that only import ",{"type":37,"tag":64,"props":1598,"children":1600},{"className":1599},[],[1601],{"type":43,"value":69},{"type":43,"value":455},{"type":37,"tag":52,"props":1604,"children":1606},{"id":1605},"directorybuild-discovery",[1607],{"type":43,"value":1608},"Directory.Build Discovery",{"type":37,"tag":46,"props":1610,"children":1611},{},[1612,1614,1620],{"type":43,"value":1613},"MSBuild walks up the directory tree to find the nearest ",{"type":37,"tag":64,"props":1615,"children":1617},{"className":1616},[],[1618],{"type":43,"value":1619},"Directory.Build.props",{"type":43,"value":1621},":",{"type":37,"tag":73,"props":1623,"children":1625},{"className":75,"code":1624,"language":77,"meta":78,"style":78},"\u003C_DirectoryBuildPropsBasePath>\n  $([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildProjectDirectory)', 'Directory.Build.props'))\n\u003C\u002F_DirectoryBuildPropsBasePath>\n",[1626],{"type":37,"tag":64,"props":1627,"children":1628},{"__ignoreMap":78},[1629,1637,1645],{"type":37,"tag":84,"props":1630,"children":1631},{"class":86,"line":87},[1632],{"type":37,"tag":84,"props":1633,"children":1634},{},[1635],{"type":43,"value":1636},"\u003C_DirectoryBuildPropsBasePath>\n",{"type":37,"tag":84,"props":1638,"children":1639},{"class":86,"line":96},[1640],{"type":37,"tag":84,"props":1641,"children":1642},{},[1643],{"type":43,"value":1644},"  $([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildProjectDirectory)', 'Directory.Build.props'))\n",{"type":37,"tag":84,"props":1646,"children":1647},{"class":86,"line":105},[1648],{"type":37,"tag":84,"props":1649,"children":1650},{},[1651],{"type":43,"value":1652},"\u003C\u002F_DirectoryBuildPropsBasePath>\n",{"type":37,"tag":46,"props":1654,"children":1655},{},[1656,1658,1663],{"type":43,"value":1657},"Only the ",{"type":37,"tag":227,"props":1659,"children":1660},{},[1661],{"type":43,"value":1662},"nearest",{"type":43,"value":1664}," file is discovered. Nested hierarchies must explicitly import parents:",{"type":37,"tag":73,"props":1666,"children":1668},{"className":75,"code":1667,"language":77,"meta":78,"style":78},"\u003C!-- src\u002FDirectory.Build.props -->\n\u003CPropertyGroup>\n  \u003C_ParentPropsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\u002F'))\u003C\u002F_ParentPropsPath>\n\u003C\u002FPropertyGroup>\n\u003CImport Project=\"$(_ParentPropsPath)\" Condition=\"'$(_ParentPropsPath)' != ''\" \u002F>\n",[1669],{"type":37,"tag":64,"props":1670,"children":1671},{"__ignoreMap":78},[1672,1680,1687,1695,1702],{"type":37,"tag":84,"props":1673,"children":1674},{"class":86,"line":87},[1675],{"type":37,"tag":84,"props":1676,"children":1677},{},[1678],{"type":43,"value":1679},"\u003C!-- src\u002FDirectory.Build.props -->\n",{"type":37,"tag":84,"props":1681,"children":1682},{"class":86,"line":96},[1683],{"type":37,"tag":84,"props":1684,"children":1685},{},[1686],{"type":43,"value":93},{"type":37,"tag":84,"props":1688,"children":1689},{"class":86,"line":105},[1690],{"type":37,"tag":84,"props":1691,"children":1692},{},[1693],{"type":43,"value":1694},"  \u003C_ParentPropsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)..\u002F'))\u003C\u002F_ParentPropsPath>\n",{"type":37,"tag":84,"props":1696,"children":1697},{"class":86,"line":114},[1698],{"type":37,"tag":84,"props":1699,"children":1700},{},[1701],{"type":43,"value":129},{"type":37,"tag":84,"props":1703,"children":1704},{"class":86,"line":123},[1705],{"type":37,"tag":84,"props":1706,"children":1707},{},[1708],{"type":43,"value":1709},"\u003CImport Project=\"$(_ParentPropsPath)\" Condition=\"'$(_ParentPropsPath)' != ''\" \u002F>\n",{"type":37,"tag":52,"props":1711,"children":1713},{"id":1712},"creating-your-own-extension-point",[1714],{"type":43,"value":1715},"Creating Your Own Extension Point",{"type":37,"tag":73,"props":1717,"children":1719},{"className":75,"code":1718,"language":77,"meta":78,"style":78},"\u003C!-- MySDK.targets -->\n\u003CProject>\n  \u003CImport Project=\"MySDK.props\" Condition=\"'$(MySDKPropsImported)' != 'true'\" \u002F>\n\n  \u003CPropertyGroup>\n    \u003CCustomBeforeMySDK Condition=\"'$(CustomBeforeMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.Before.targets\u003C\u002FCustomBeforeMySDK>\n    \u003CCustomAfterMySDK Condition=\"'$(CustomAfterMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.After.targets\u003C\u002FCustomAfterMySDK>\n  \u003C\u002FPropertyGroup>\n\n  \u003CImport Project=\"$(CustomBeforeMySDK)\" Condition=\"Exists('$(CustomBeforeMySDK)')\" \u002F>\n\n  \u003CPropertyGroup>\n    \u003CMySDKBuildDependsOn>BeforeMySDKBuild;CoreMySDKBuild;AfterMySDKBuild\u003C\u002FMySDKBuildDependsOn>\n  \u003C\u002FPropertyGroup>\n  \u003CTarget Name=\"MySDKBuild\" DependsOnTargets=\"$(MySDKBuildDependsOn)\" \u002F>\n  \u003CTarget Name=\"BeforeMySDKBuild\" \u002F>\n  \u003CTarget Name=\"AfterMySDKBuild\" \u002F>\n  \u003CTarget Name=\"CoreMySDKBuild\">\n    \u003C!-- implementation -->\n  \u003C\u002FTarget>\n\n  \u003CImport Project=\"$(CustomAfterMySDK)\" Condition=\"Exists('$(CustomAfterMySDK)')\" \u002F>\n\u003C\u002FProject>\n",[1720],{"type":37,"tag":64,"props":1721,"children":1722},{"__ignoreMap":78},[1723,1731,1738,1746,1753,1761,1769,1777,1785,1792,1800,1807,1815,1824,1832,1841,1850,1859,1868,1877,1886,1894,1903],{"type":37,"tag":84,"props":1724,"children":1725},{"class":86,"line":87},[1726],{"type":37,"tag":84,"props":1727,"children":1728},{},[1729],{"type":43,"value":1730},"\u003C!-- MySDK.targets -->\n",{"type":37,"tag":84,"props":1732,"children":1733},{"class":86,"line":96},[1734],{"type":37,"tag":84,"props":1735,"children":1736},{},[1737],{"type":43,"value":1356},{"type":37,"tag":84,"props":1739,"children":1740},{"class":86,"line":105},[1741],{"type":37,"tag":84,"props":1742,"children":1743},{},[1744],{"type":43,"value":1745},"  \u003CImport Project=\"MySDK.props\" Condition=\"'$(MySDKPropsImported)' != 'true'\" \u002F>\n",{"type":37,"tag":84,"props":1747,"children":1748},{"class":86,"line":114},[1749],{"type":37,"tag":84,"props":1750,"children":1751},{"emptyLinePlaceholder":136},[1752],{"type":43,"value":139},{"type":37,"tag":84,"props":1754,"children":1755},{"class":86,"line":123},[1756],{"type":37,"tag":84,"props":1757,"children":1758},{},[1759],{"type":43,"value":1760},"  \u003CPropertyGroup>\n",{"type":37,"tag":84,"props":1762,"children":1763},{"class":86,"line":132},[1764],{"type":37,"tag":84,"props":1765,"children":1766},{},[1767],{"type":43,"value":1768},"    \u003CCustomBeforeMySDK Condition=\"'$(CustomBeforeMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.Before.targets\u003C\u002FCustomBeforeMySDK>\n",{"type":37,"tag":84,"props":1770,"children":1771},{"class":86,"line":142},[1772],{"type":37,"tag":84,"props":1773,"children":1774},{},[1775],{"type":43,"value":1776},"    \u003CCustomAfterMySDK Condition=\"'$(CustomAfterMySDK)' == ''\">$(MSBuildProjectDirectory)\\MySDK.After.targets\u003C\u002FCustomAfterMySDK>\n",{"type":37,"tag":84,"props":1778,"children":1779},{"class":86,"line":151},[1780],{"type":37,"tag":84,"props":1781,"children":1782},{},[1783],{"type":43,"value":1784},"  \u003C\u002FPropertyGroup>\n",{"type":37,"tag":84,"props":1786,"children":1787},{"class":86,"line":160},[1788],{"type":37,"tag":84,"props":1789,"children":1790},{"emptyLinePlaceholder":136},[1791],{"type":43,"value":139},{"type":37,"tag":84,"props":1793,"children":1794},{"class":86,"line":169},[1795],{"type":37,"tag":84,"props":1796,"children":1797},{},[1798],{"type":43,"value":1799},"  \u003CImport Project=\"$(CustomBeforeMySDK)\" Condition=\"Exists('$(CustomBeforeMySDK)')\" \u002F>\n",{"type":37,"tag":84,"props":1801,"children":1802},{"class":86,"line":178},[1803],{"type":37,"tag":84,"props":1804,"children":1805},{"emptyLinePlaceholder":136},[1806],{"type":43,"value":139},{"type":37,"tag":84,"props":1808,"children":1810},{"class":86,"line":1809},12,[1811],{"type":37,"tag":84,"props":1812,"children":1813},{},[1814],{"type":43,"value":1760},{"type":37,"tag":84,"props":1816,"children":1818},{"class":86,"line":1817},13,[1819],{"type":37,"tag":84,"props":1820,"children":1821},{},[1822],{"type":43,"value":1823},"    \u003CMySDKBuildDependsOn>BeforeMySDKBuild;CoreMySDKBuild;AfterMySDKBuild\u003C\u002FMySDKBuildDependsOn>\n",{"type":37,"tag":84,"props":1825,"children":1827},{"class":86,"line":1826},14,[1828],{"type":37,"tag":84,"props":1829,"children":1830},{},[1831],{"type":43,"value":1784},{"type":37,"tag":84,"props":1833,"children":1835},{"class":86,"line":1834},15,[1836],{"type":37,"tag":84,"props":1837,"children":1838},{},[1839],{"type":43,"value":1840},"  \u003CTarget Name=\"MySDKBuild\" DependsOnTargets=\"$(MySDKBuildDependsOn)\" \u002F>\n",{"type":37,"tag":84,"props":1842,"children":1844},{"class":86,"line":1843},16,[1845],{"type":37,"tag":84,"props":1846,"children":1847},{},[1848],{"type":43,"value":1849},"  \u003CTarget Name=\"BeforeMySDKBuild\" \u002F>\n",{"type":37,"tag":84,"props":1851,"children":1853},{"class":86,"line":1852},17,[1854],{"type":37,"tag":84,"props":1855,"children":1856},{},[1857],{"type":43,"value":1858},"  \u003CTarget Name=\"AfterMySDKBuild\" \u002F>\n",{"type":37,"tag":84,"props":1860,"children":1862},{"class":86,"line":1861},18,[1863],{"type":37,"tag":84,"props":1864,"children":1865},{},[1866],{"type":43,"value":1867},"  \u003CTarget Name=\"CoreMySDKBuild\">\n",{"type":37,"tag":84,"props":1869,"children":1871},{"class":86,"line":1870},19,[1872],{"type":37,"tag":84,"props":1873,"children":1874},{},[1875],{"type":43,"value":1876},"    \u003C!-- implementation -->\n",{"type":37,"tag":84,"props":1878,"children":1880},{"class":86,"line":1879},20,[1881],{"type":37,"tag":84,"props":1882,"children":1883},{},[1884],{"type":43,"value":1885},"  \u003C\u002FTarget>\n",{"type":37,"tag":84,"props":1887,"children":1889},{"class":86,"line":1888},21,[1890],{"type":37,"tag":84,"props":1891,"children":1892},{"emptyLinePlaceholder":136},[1893],{"type":43,"value":139},{"type":37,"tag":84,"props":1895,"children":1897},{"class":86,"line":1896},22,[1898],{"type":37,"tag":84,"props":1899,"children":1900},{},[1901],{"type":43,"value":1902},"  \u003CImport Project=\"$(CustomAfterMySDK)\" Condition=\"Exists('$(CustomAfterMySDK)')\" \u002F>\n",{"type":37,"tag":84,"props":1904,"children":1906},{"class":86,"line":1905},23,[1907],{"type":37,"tag":84,"props":1908,"children":1909},{},[1910],{"type":43,"value":1372},{"type":37,"tag":52,"props":1912,"children":1914},{"id":1913},"common-pitfalls",[1915],{"type":43,"value":1916},"Common Pitfalls",{"type":37,"tag":193,"props":1918,"children":1919},{},[1920,1957,1980,1990],{"type":37,"tag":197,"props":1921,"children":1922},{},[1923,1935,1937,1942,1944,1949,1950,1955],{"type":37,"tag":227,"props":1924,"children":1925},{},[1926,1928,1933],{"type":43,"value":1927},"Missing ",{"type":37,"tag":64,"props":1929,"children":1931},{"className":1930},[],[1932],{"type":43,"value":220},{"type":43,"value":1934}," on optional imports",{"type":43,"value":1936}," causes build failures when files are absent. ",{"type":37,"tag":227,"props":1938,"children":1939},{},[1940],{"type":43,"value":1941},"Exception",{"type":43,"value":1943},": imports inside published ",{"type":37,"tag":64,"props":1945,"children":1947},{"className":1946},[],[1948],{"type":43,"value":846},{"type":43,"value":774},{"type":37,"tag":64,"props":1951,"children":1953},{"className":1952},[],[1954],{"type":43,"value":877},{"type":43,"value":1956}," folders of a NuGet package are a package contract — the target is guaranteed by the packed layout (see \"Source Tree vs Packed Layout\" above). Don't guard them and don't flag them.",{"type":37,"tag":197,"props":1958,"children":1959},{},[1960,1970,1972,1978],{"type":37,"tag":1478,"props":1961,"children":1962},{},[1963,1968],{"type":37,"tag":1478,"props":1964,"children":1965},{},[1966],{"type":43,"value":1967},"Overwriting Custom",{"type":43,"value":1969}," properties",{"type":43,"value":1971},"* drops prior hooks. Append with ",{"type":37,"tag":64,"props":1973,"children":1975},{"className":1974},[],[1976],{"type":43,"value":1977},";",{"type":43,"value":1979}," separator.",{"type":37,"tag":197,"props":1981,"children":1982},{},[1983,1988],{"type":37,"tag":227,"props":1984,"children":1985},{},[1986],{"type":43,"value":1987},"NuGet package file names not matching package ID",{"type":43,"value":1989}," silently skips the import.",{"type":37,"tag":197,"props":1991,"children":1992},{},[1993,1998],{"type":37,"tag":227,"props":1994,"children":1995},{},[1996],{"type":43,"value":1997},"Nested Directory.Build.props",{"type":43,"value":1999}," without parent import loses repo-root settings.",{"type":37,"tag":2001,"props":2002,"children":2003},"style",{},[2004],{"type":43,"value":2005},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2007,"total":2172},[2008,2024,2039,2054,2072,2086,2106,2116,2128,2138,2151,2162],{"slug":2009,"name":2009,"fn":2010,"description":2011,"org":2012,"tags":2013,"stars":2021,"repoUrl":2022,"updatedAt":2023},"multithreaded-task-migration","migrate MSBuild tasks to multithreaded mode","Guide for migrating MSBuild tasks to multithreaded mode support, including compatibility red-team review. Use this when converting tasks to thread-safe versions, implementing IMultiThreadableTask, adding TaskEnvironment support, or auditing migrations for behavioral compatibility.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2014,2017,2018],{"name":2015,"slug":2016,"type":15},".NET","net",{"name":17,"slug":18,"type":15},{"name":2019,"slug":2020,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":2025,"name":2025,"fn":2026,"description":2027,"org":2028,"tags":2029,"stars":19,"repoUrl":20,"updatedAt":2038},"analyzing-dotnet-performance","analyze .NET code for performance anti-patterns","Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I\u002FO with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2030,2031,2034,2037],{"name":2015,"slug":2016,"type":15},{"name":2032,"slug":2033,"type":15},"Code Analysis","code-analysis",{"name":2035,"slug":2036,"type":15},"Debugging","debugging",{"name":2019,"slug":2020,"type":15},"2026-07-12T08:23:25.400375",{"slug":2040,"name":2040,"fn":2041,"description":2042,"org":2043,"tags":2044,"stars":19,"repoUrl":20,"updatedAt":2053},"android-tombstone-symbolication","symbolicate .NET runtime frames in Android tombstones","Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java\u002FKotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2045,2046,2049,2050],{"name":2015,"slug":2016,"type":15},{"name":2047,"slug":2048,"type":15},"Android","android",{"name":2035,"slug":2036,"type":15},{"name":2051,"slug":2052,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":2055,"name":2055,"fn":2056,"description":2057,"org":2058,"tags":2059,"stars":19,"repoUrl":20,"updatedAt":2071},"apple-crash-symbolication","symbolicate .NET runtime frames in crash logs","Symbolicate .NET runtime frames in Apple platform .ips crash logs (iOS, tvOS, Mac Catalyst, macOS). Extracts UUIDs and addresses from the native backtrace, locates dSYM debug symbols, and runs atos to produce function names with source file and line numbers. Automatically downloads .dwarf symbols from the Microsoft symbol server using Mach-O UUIDs. USE FOR triaging a .NET MAUI or Mono app crash from an .ips file on any Apple platform, resolving native backtrace frames in libcoreclr or libmonosgen-2.0 to .NET runtime source code, retrieving .ips crash logs from a connected iOS device or iPhone, or investigating EXC_CRASH, EXC_BAD_ACCESS, SIGABRT, or SIGSEGV originating from the .NET runtime. DO NOT USE FOR pure Swift\u002FObjective-C crashes with no .NET components, or Android tombstone files. INVOKES Symbolicate-Crash.ps1 script, atos, dwarfdump, idevicecrashreport.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2060,2061,2062,2065,2068],{"name":2015,"slug":2016,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2063,"slug":2064,"type":15},"iOS","ios",{"name":2066,"slug":2067,"type":15},"macOS","macos",{"name":2069,"slug":2070,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2073,"name":2073,"fn":2074,"description":2075,"org":2076,"tags":2077,"stars":19,"repoUrl":20,"updatedAt":2085},"assertion-quality","evaluate assertion quality in test suites","Analyzes the variety and depth of assertions across test suites in any language. Use when the user asks to evaluate assertion quality, find shallow tests, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull \u002F toBeTruthy()), flag self-referential or tautological assertions, measure assertion diversity, or audit whether tests verify different facets of behavior. Polyglot: .NET, Python, TS\u002FJS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, C++. DO NOT USE FOR: writing new tests (use code-testing-agent \u002F writing-mstest-tests), mutation reasoning about whether tests would catch a bug (use test-gap-analysis), or a general severity-ranked anti-pattern audit (use test-anti-patterns), fixing or rewriting assertions, or writing, fixing, or modernizing MSTest tests, assertions, or attributes (use writing-mstest-tests).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2078,2079,2082],{"name":2032,"slug":2033,"type":15},{"name":2080,"slug":2081,"type":15},"QA","qa",{"name":2083,"slug":2084,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":2087,"name":2087,"fn":2088,"description":2089,"org":2090,"tags":2091,"stars":19,"repoUrl":20,"updatedAt":2105},"author-component","create and review Blazor components","Create or review Blazor components (.razor files) with correct architecture. USE FOR: writing new Blazor components that do NOT involve JavaScript interop, implementing parameters and EventCallback, RenderFragment slots, component lifecycle (OnInitializedAsync, OnParametersSet), async patterns, IAsyncDisposable, CancellationToken, CSS isolation, code-behind. DO NOT USE FOR: creating new projects (use create-blazor-project), JavaScript interop or calling browser APIs from Blazor (use use-js-interop), forms and validation (use collect-user-input), prerendering issues (use support-prerendering), HTTP data fetching patterns (use fetch-and-send-data), coordinating state between unrelated components (use coordinate-components).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2092,2093,2096,2099,2102],{"name":2015,"slug":2016,"type":15},{"name":2094,"slug":2095,"type":15},"Blazor","blazor",{"name":2097,"slug":2098,"type":15},"C#","csharp",{"name":2100,"slug":2101,"type":15},"UI Components","ui-components",{"name":2103,"slug":2104,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2107,"name":2107,"fn":2108,"description":2109,"org":2110,"tags":2111,"stars":19,"repoUrl":20,"updatedAt":2115},"binlog-failure-analysis","analyze MSBuild binary logs","Analyze MSBuild binary logs to diagnose build failures. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, and generally any MSBuild build issues. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2112,2113,2114],{"name":2032,"slug":2033,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2051,"slug":2052,"type":15},"2026-07-12T08:21:34.637923",{"slug":2117,"name":2117,"fn":2118,"description":2119,"org":2120,"tags":2121,"stars":19,"repoUrl":20,"updatedAt":2127},"binlog-generation","generate MSBuild binary logs for diagnostics","Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding \u002Fbl:{} to any dotnet build, test, pack, publish, or restore command to capture a full build execution trace, prerequisite for binlog-failure-analysis and build-perf-diagnostics skills, enabling post-build investigation of errors or performance. Requires MSBuild 17.8+ \u002F .NET 8 SDK+ for {} placeholder; PowerShell needs -bl:{{}}. DO NOT USE FOR: non-MSBuild build systems (npm, Maven, CMake), analyzing an existing binlog (use binlog-failure-analysis instead).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2122,2125,2126],{"name":2123,"slug":2124,"type":15},"Build","build",{"name":2035,"slug":2036,"type":15},{"name":17,"slug":18,"type":15},"2026-07-19T05:38:19.340791",{"slug":2129,"name":2129,"fn":2130,"description":2131,"org":2132,"tags":2133,"stars":19,"repoUrl":20,"updatedAt":2137},"build-parallelism","optimize MSBuild build parallelism","Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why `-m` isn't helping. Note: `\u002Fmaxcpucount` default is 1 (sequential) — always pass `-m` for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (`\u002Fgraph`), BuildInParallel, and solution filters (`.slnf`). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2134,2135,2136],{"name":2015,"slug":2016,"type":15},{"name":17,"slug":18,"type":15},{"name":2019,"slug":2020,"type":15},"2026-07-19T05:38:18.364937",{"slug":2139,"name":2139,"fn":2140,"description":2141,"org":2142,"tags":2143,"stars":19,"repoUrl":20,"updatedAt":2150},"build-perf-baseline","establish and optimize build performance baselines","Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before\u002Fafter measurements (cold, warm, no-op scenarios), applying optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into build-perf-diagnostics, incremental-build, or build-parallelism. DO NOT USE FOR: non-MSBuild build systems, detailed bottleneck analysis (use build-perf-diagnostics after baselining).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2144,2145,2148,2149],{"name":17,"slug":18,"type":15},{"name":2146,"slug":2147,"type":15},"Monitoring","monitoring",{"name":2019,"slug":2020,"type":15},{"name":2083,"slug":2084,"type":15},"2026-07-12T08:21:35.865649",{"slug":2152,"name":2152,"fn":2153,"description":2154,"org":2155,"tags":2156,"stars":19,"repoUrl":20,"updatedAt":2161},"build-perf-diagnostics","diagnose MSBuild build performance bottlenecks","Diagnose MSBuild build performance bottlenecks using binary log analysis. USE FOR: identifying why builds are slow by analyzing binlog performance summaries, detecting ResolveAssemblyReference (RAR) taking >5s, Roslyn analyzers consuming >30% of Csc time, single targets dominating >50% of build time, node utilization below 80%, excessive Copy tasks, NuGet restore running every build. Covers timeline analysis, Target\u002FTask Performance Summary interpretation, and 7 common bottleneck categories. Use after build-perf-baseline has established measurements. DO NOT USE FOR: establishing initial baselines (use build-perf-baseline first), fixing incremental build issues (use incremental-build), parallelism tuning (use build-parallelism), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2157,2158,2159,2160],{"name":2015,"slug":2016,"type":15},{"name":2035,"slug":2036,"type":15},{"name":17,"slug":18,"type":15},{"name":2019,"slug":2020,"type":15},"2026-07-12T08:21:40.961722",{"slug":2163,"name":2163,"fn":2164,"description":2165,"org":2166,"tags":2167,"stars":19,"repoUrl":20,"updatedAt":2171},"check-bin-obj-clash","detect MSBuild output path conflicts","Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, or missing\u002Foverwritten outputs in multi-project or multi-targeting builds where bin\u002Fobj (or project.assets.json) collide. Common causes: shared OutputPath, missing AppendTargetFrameworkToOutputPath, extra global properties (e.g. PublishReadyToRun), or SetTargetFramework on a ProjectReference to a single-targeting project. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2168,2169,2170],{"name":2035,"slug":2036,"type":15},{"name":17,"slug":18,"type":15},{"name":2080,"slug":2081,"type":15},"2026-07-19T05:38:14.336279",144,{"items":2174,"total":2223},[2175,2182,2189,2197,2203,2211,2217],{"slug":2025,"name":2025,"fn":2026,"description":2027,"org":2176,"tags":2177,"stars":19,"repoUrl":20,"updatedAt":2038},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2178,2179,2180,2181],{"name":2015,"slug":2016,"type":15},{"name":2032,"slug":2033,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2019,"slug":2020,"type":15},{"slug":2040,"name":2040,"fn":2041,"description":2042,"org":2183,"tags":2184,"stars":19,"repoUrl":20,"updatedAt":2053},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2185,2186,2187,2188],{"name":2015,"slug":2016,"type":15},{"name":2047,"slug":2048,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2051,"slug":2052,"type":15},{"slug":2055,"name":2055,"fn":2056,"description":2057,"org":2190,"tags":2191,"stars":19,"repoUrl":20,"updatedAt":2071},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2192,2193,2194,2195,2196],{"name":2015,"slug":2016,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2063,"slug":2064,"type":15},{"name":2066,"slug":2067,"type":15},{"name":2069,"slug":2070,"type":15},{"slug":2073,"name":2073,"fn":2074,"description":2075,"org":2198,"tags":2199,"stars":19,"repoUrl":20,"updatedAt":2085},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2200,2201,2202],{"name":2032,"slug":2033,"type":15},{"name":2080,"slug":2081,"type":15},{"name":2083,"slug":2084,"type":15},{"slug":2087,"name":2087,"fn":2088,"description":2089,"org":2204,"tags":2205,"stars":19,"repoUrl":20,"updatedAt":2105},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2206,2207,2208,2209,2210],{"name":2015,"slug":2016,"type":15},{"name":2094,"slug":2095,"type":15},{"name":2097,"slug":2098,"type":15},{"name":2100,"slug":2101,"type":15},{"name":2103,"slug":2104,"type":15},{"slug":2107,"name":2107,"fn":2108,"description":2109,"org":2212,"tags":2213,"stars":19,"repoUrl":20,"updatedAt":2115},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2214,2215,2216],{"name":2032,"slug":2033,"type":15},{"name":2035,"slug":2036,"type":15},{"name":2051,"slug":2052,"type":15},{"slug":2117,"name":2117,"fn":2118,"description":2119,"org":2218,"tags":2219,"stars":19,"repoUrl":20,"updatedAt":2127},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2220,2221,2222],{"name":2123,"slug":2124,"type":15},{"name":2035,"slug":2036,"type":15},{"name":17,"slug":18,"type":15},96]