[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-filter-syntax":3,"mdc-g6o929-key":34,"related-repo-dotnet-filter-syntax":1959,"related-org-dotnet-filter-syntax":2068},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":29,"sourceUrl":32,"mdContent":33},"filter-syntax","reference test filter syntax","Reference data for test filter syntax across all platform and framework combinations: VSTest --filter expressions, MTP filters for MSTest\u002FNUnit\u002FxUnit v3\u002FTUnit, and VSTest-to-MTP filter translation. DO NOT USE directly — loaded by run-tests, mtp-hot-reload, and migrate-vstest-to-mtp when they need filter syntax.",{"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,19],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":17,"slug":18,"type":15},"Documentation","documentation",{"name":20,"slug":21,"type":15},"Testing","testing",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:40.722246","MIT",332,[28],"agent-skills",{"repoUrl":23,"stars":22,"forks":26,"topics":30,"description":31},[28],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-test\u002Fskills\u002Ffilter-syntax","---\nname: filter-syntax\ndescription: \"Reference data for test filter syntax across all platform and framework combinations: VSTest --filter expressions, MTP filters for MSTest\u002FNUnit\u002FxUnit v3\u002FTUnit, and VSTest-to-MTP filter translation. DO NOT USE directly — loaded by run-tests, mtp-hot-reload, and migrate-vstest-to-mtp when they need filter syntax.\"\nuser-invocable: false\ndisable-model-invocation: true\nlicense: MIT\n---\n\n# Test Filter Syntax Reference\n\nFilter syntax depends on the **platform** and **test framework**.\n\n## VSTest filters (MSTest, xUnit v2, NUnit on VSTest)\n\n```bash\ndotnet test --filter \u003CEXPRESSION>\n```\n\nExpression syntax: `\u003CProperty>\u003COperator>\u003CValue>[|&\u003CExpression>]`\n\n**Operators:**\n\n| Operator | Meaning |\n|----------|---------|\n| `=` | Exact match |\n| `!=` | Not exact match |\n| `~` | Contains |\n| `!~` | Does not contain |\n\n**Combinators:** `|` (OR), `&` (AND). Parentheses for grouping: `(A|B)&C`\n\n**Supported properties by framework:**\n\n| Framework | Properties |\n|-----------|-----------|\n| MSTest | `FullyQualifiedName`, `Name`, `ClassName`, `Priority`, `TestCategory` |\n| xUnit | `FullyQualifiedName`, `DisplayName`, `Traits` |\n| NUnit | `FullyQualifiedName`, `Name`, `Priority`, `TestCategory` |\n\nAn expression without an operator is treated as `FullyQualifiedName~\u003Cvalue>`.\n\n**Examples (VSTest):**\n\n```bash\n# Run tests whose name contains \"LoginTest\"\ndotnet test --filter \"Name~LoginTest\"\n\n# Run a specific test class\ndotnet test --filter \"ClassName=MyNamespace.MyTestClass\"\n\n# Run tests in a category\ndotnet test --filter \"TestCategory=Integration\"\n\n# Exclude a category\ndotnet test --filter \"TestCategory!=Slow\"\n\n# Combine: class AND category\ndotnet test --filter \"ClassName=MyNamespace.MyTestClass&TestCategory=Unit\"\n\n# Either of two classes\ndotnet test --filter \"ClassName=MyNamespace.ClassA|ClassName=MyNamespace.ClassB\"\n```\n\n## MTP filters — MSTest and NUnit\n\nMSTest and NUnit on MTP use the **same `--filter` syntax** as VSTest (same properties, operators, and combinators). The only difference is how the flag is passed:\n\n```bash\n# .NET SDK 8\u002F9 (after --)\ndotnet test -- --filter \"Name~LoginTest\"\n\n# .NET SDK 10+ (direct)\ndotnet test --filter \"Name~LoginTest\"\n```\n\n## MTP filters — xUnit (v3)\n\nxUnit v3 on MTP uses **framework-specific filter flags** instead of the generic `--filter` expression:\n\n| Flag | Description |\n|------|-------------|\n| `--filter-class \"name\"` | Run all tests in a given class |\n| `--filter-not-class \"name\"` | Exclude all tests in a given class |\n| `--filter-method \"name\"` | Run a specific test method |\n| `--filter-not-method \"name\"` | Exclude a specific test method |\n| `--filter-namespace \"name\"` | Run all tests in a namespace |\n| `--filter-not-namespace \"name\"` | Exclude all tests in a namespace |\n| `--filter-trait \"name=value\"` | Run tests with a matching trait |\n| `--filter-not-trait \"name=value\"` | Exclude tests with a matching trait |\n\nMultiple values can be specified with a single flag: `--filter-class Foo Bar`.\n\n```bash\n# .NET SDK 8\u002F9\ndotnet test -- --filter-class \"MyNamespace.LoginTests\"\n\n# .NET SDK 10+\ndotnet test --filter-class \"MyNamespace.LoginTests\"\n\n# Combine: namespace + trait\ndotnet test --filter-namespace \"MyApp.Tests.Integration\" --filter-trait \"Category=Smoke\"\n```\n\n### xUnit v3 query filter language\n\nFor complex expressions, use `--filter-query` with a path-segment syntax:\n\n```text\n\u002F\u003CassemblyFilter>\u002F\u003CnamespaceFilter>\u002F\u003CclassFilter>\u002F\u003CmethodFilter>[traitName=traitValue]\n```\n\nEach segment matches against: assembly name, namespace, class name, method name. Use `*` for \"match all\" in any segment. Documentation: \u003Chttps:\u002F\u002Fxunit.net\u002Fdocs\u002Fquery-filter-language>\n\n```shell\n# xUnit.net v3 MTP — using query language (assembly\u002Fnamespace\u002Fclass\u002Fmethod[trait])\ndotnet test -- --filter-query \"\u002F*\u002F*\u002F*IntegrationTests*\u002F*[Category=Smoke]\"\n```\n\n## MTP filters — TUnit\n\nTUnit uses `--treenode-filter` with a path-based syntax:\n\n```text\n--treenode-filter \"\u002F\u003CAssembly>\u002F\u003CNamespace>\u002F\u003CClassName>\u002F\u003CTestName>\"\n```\n\nWildcards (`*`) are supported in any segment. Filter operators can be appended to test names for property-based filtering.\n\n| Operator | Meaning |\n|----------|---------|\n| `*` | Wildcard match |\n| `=` | Exact property match (e.g., `[Category=Unit]`) |\n| `!=` | Exclude property value |\n| `&` | AND (combine conditions) |\n| `\\|` | OR (within a segment, requires parentheses) |\n\n**Examples (TUnit):**\n\n```bash\n# All tests in a class\ndotnet run --treenode-filter \"\u002F*\u002F*\u002FLoginTests\u002F*\"\n\n# A specific test\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002FAcceptCookiesTest\"\n\n# By namespace prefix (wildcard)\ndotnet run --treenode-filter \"\u002F*\u002FMyProject.Tests.Api*\u002F*\u002F*\"\n\n# By custom property\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002F*[Category=Smoke]\"\n\n# Exclude by property\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002F*[Category!=Slow]\"\n\n# OR across classes\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F(LoginTests)|(SignupTests)\u002F*\"\n\n# Combined: namespace + property\ndotnet run --treenode-filter \"\u002F*\u002FMyProject.Tests.Integration\u002F*\u002F*\u002F*[Priority=Critical]\"\n```\n\n## VSTest → MTP filter translation (for migration)\n\n**MSTest, NUnit, and xUnit.net v2 (with `YTest.MTP.XUnit2`)**: The VSTest `--filter` syntax is identical on both VSTest and MTP. No changes needed.\n\n**xUnit.net v3 (native MTP)**: xUnit.net v3 does NOT support the VSTest `--filter` syntax on MTP. Translate filters using xUnit.net v3's native options:\n\n| VSTest `--filter` syntax | xUnit.net v3 MTP equivalent | Notes |\n|---|---|---|\n| `FullyQualifiedName~ClassName` | `--filter-class *ClassName*` | Wildcards required for substring match |\n| `FullyQualifiedName=Ns.Class.Method` | `--filter-method Ns.Class.Method` | Exact match on fully qualified method |\n| `Name=MethodName` | `--filter-method *MethodName*` | Wildcards for substring match |\n| `Category=Value` (trait) | `--filter-trait \"Category=Value\"` | Filter by trait name\u002Fvalue pair |\n| Complex expressions | `--filter-query \"expr\"` | Uses xUnit.net query filter language (see above) |\n",{"data":35,"body":38},{"name":4,"description":6,"user-invocable":36,"disable-model-invocation":37,"license":25},false,true,{"type":39,"children":40},"root",[41,50,71,78,134,145,153,249,281,289,421,433,441,719,725,745,834,840,859,1017,1029,1182,1189,1202,1212,1233,1283,1289,1302,1311,1323,1431,1439,1745,1751,1775,1792,1953],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"test-filter-syntax-reference",[47],{"type":48,"value":49},"text","Test Filter Syntax Reference",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54,56,62,64,69],{"type":48,"value":55},"Filter syntax depends on the ",{"type":42,"tag":57,"props":58,"children":59},"strong",{},[60],{"type":48,"value":61},"platform",{"type":48,"value":63}," and ",{"type":42,"tag":57,"props":65,"children":66},{},[67],{"type":48,"value":68},"test framework",{"type":48,"value":70},".",{"type":42,"tag":72,"props":73,"children":75},"h2",{"id":74},"vstest-filters-mstest-xunit-v2-nunit-on-vstest",[76],{"type":48,"value":77},"VSTest filters (MSTest, xUnit v2, NUnit on VSTest)",{"type":42,"tag":79,"props":80,"children":85},"pre",{"className":81,"code":82,"language":83,"meta":84,"style":84},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet test --filter \u003CEXPRESSION>\n","bash","",[86],{"type":42,"tag":87,"props":88,"children":89},"code",{"__ignoreMap":84},[90],{"type":42,"tag":91,"props":92,"children":95},"span",{"class":93,"line":94},"line",1,[96,101,107,112,118,123,129],{"type":42,"tag":91,"props":97,"children":99},{"style":98},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[100],{"type":48,"value":8},{"type":42,"tag":91,"props":102,"children":104},{"style":103},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[105],{"type":48,"value":106}," test",{"type":42,"tag":91,"props":108,"children":109},{"style":103},[110],{"type":48,"value":111}," --filter",{"type":42,"tag":91,"props":113,"children":115},{"style":114},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[116],{"type":48,"value":117}," \u003C",{"type":42,"tag":91,"props":119,"children":120},{"style":103},[121],{"type":48,"value":122},"EXPRESSIO",{"type":42,"tag":91,"props":124,"children":126},{"style":125},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[127],{"type":48,"value":128},"N",{"type":42,"tag":91,"props":130,"children":131},{"style":114},[132],{"type":48,"value":133},">\n",{"type":42,"tag":51,"props":135,"children":136},{},[137,139],{"type":48,"value":138},"Expression syntax: ",{"type":42,"tag":87,"props":140,"children":142},{"className":141},[],[143],{"type":48,"value":144},"\u003CProperty>\u003COperator>\u003CValue>[|&\u003CExpression>]",{"type":42,"tag":51,"props":146,"children":147},{},[148],{"type":42,"tag":57,"props":149,"children":150},{},[151],{"type":48,"value":152},"Operators:",{"type":42,"tag":154,"props":155,"children":156},"table",{},[157,176],{"type":42,"tag":158,"props":159,"children":160},"thead",{},[161],{"type":42,"tag":162,"props":163,"children":164},"tr",{},[165,171],{"type":42,"tag":166,"props":167,"children":168},"th",{},[169],{"type":48,"value":170},"Operator",{"type":42,"tag":166,"props":172,"children":173},{},[174],{"type":48,"value":175},"Meaning",{"type":42,"tag":177,"props":178,"children":179},"tbody",{},[180,198,215,232],{"type":42,"tag":162,"props":181,"children":182},{},[183,193],{"type":42,"tag":184,"props":185,"children":186},"td",{},[187],{"type":42,"tag":87,"props":188,"children":190},{"className":189},[],[191],{"type":48,"value":192},"=",{"type":42,"tag":184,"props":194,"children":195},{},[196],{"type":48,"value":197},"Exact match",{"type":42,"tag":162,"props":199,"children":200},{},[201,210],{"type":42,"tag":184,"props":202,"children":203},{},[204],{"type":42,"tag":87,"props":205,"children":207},{"className":206},[],[208],{"type":48,"value":209},"!=",{"type":42,"tag":184,"props":211,"children":212},{},[213],{"type":48,"value":214},"Not exact match",{"type":42,"tag":162,"props":216,"children":217},{},[218,227],{"type":42,"tag":184,"props":219,"children":220},{},[221],{"type":42,"tag":87,"props":222,"children":224},{"className":223},[],[225],{"type":48,"value":226},"~",{"type":42,"tag":184,"props":228,"children":229},{},[230],{"type":48,"value":231},"Contains",{"type":42,"tag":162,"props":233,"children":234},{},[235,244],{"type":42,"tag":184,"props":236,"children":237},{},[238],{"type":42,"tag":87,"props":239,"children":241},{"className":240},[],[242],{"type":48,"value":243},"!~",{"type":42,"tag":184,"props":245,"children":246},{},[247],{"type":48,"value":248},"Does not contain",{"type":42,"tag":51,"props":250,"children":251},{},[252,257,259,265,267,273,275],{"type":42,"tag":57,"props":253,"children":254},{},[255],{"type":48,"value":256},"Combinators:",{"type":48,"value":258}," ",{"type":42,"tag":87,"props":260,"children":262},{"className":261},[],[263],{"type":48,"value":264},"|",{"type":48,"value":266}," (OR), ",{"type":42,"tag":87,"props":268,"children":270},{"className":269},[],[271],{"type":48,"value":272},"&",{"type":48,"value":274}," (AND). Parentheses for grouping: ",{"type":42,"tag":87,"props":276,"children":278},{"className":277},[],[279],{"type":48,"value":280},"(A|B)&C",{"type":42,"tag":51,"props":282,"children":283},{},[284],{"type":42,"tag":57,"props":285,"children":286},{},[287],{"type":48,"value":288},"Supported properties by framework:",{"type":42,"tag":154,"props":290,"children":291},{},[292,308],{"type":42,"tag":158,"props":293,"children":294},{},[295],{"type":42,"tag":162,"props":296,"children":297},{},[298,303],{"type":42,"tag":166,"props":299,"children":300},{},[301],{"type":48,"value":302},"Framework",{"type":42,"tag":166,"props":304,"children":305},{},[306],{"type":48,"value":307},"Properties",{"type":42,"tag":177,"props":309,"children":310},{},[311,357,387],{"type":42,"tag":162,"props":312,"children":313},{},[314,319],{"type":42,"tag":184,"props":315,"children":316},{},[317],{"type":48,"value":318},"MSTest",{"type":42,"tag":184,"props":320,"children":321},{},[322,328,330,336,337,343,344,350,351],{"type":42,"tag":87,"props":323,"children":325},{"className":324},[],[326],{"type":48,"value":327},"FullyQualifiedName",{"type":48,"value":329},", ",{"type":42,"tag":87,"props":331,"children":333},{"className":332},[],[334],{"type":48,"value":335},"Name",{"type":48,"value":329},{"type":42,"tag":87,"props":338,"children":340},{"className":339},[],[341],{"type":48,"value":342},"ClassName",{"type":48,"value":329},{"type":42,"tag":87,"props":345,"children":347},{"className":346},[],[348],{"type":48,"value":349},"Priority",{"type":48,"value":329},{"type":42,"tag":87,"props":352,"children":354},{"className":353},[],[355],{"type":48,"value":356},"TestCategory",{"type":42,"tag":162,"props":358,"children":359},{},[360,365],{"type":42,"tag":184,"props":361,"children":362},{},[363],{"type":48,"value":364},"xUnit",{"type":42,"tag":184,"props":366,"children":367},{},[368,373,374,380,381],{"type":42,"tag":87,"props":369,"children":371},{"className":370},[],[372],{"type":48,"value":327},{"type":48,"value":329},{"type":42,"tag":87,"props":375,"children":377},{"className":376},[],[378],{"type":48,"value":379},"DisplayName",{"type":48,"value":329},{"type":42,"tag":87,"props":382,"children":384},{"className":383},[],[385],{"type":48,"value":386},"Traits",{"type":42,"tag":162,"props":388,"children":389},{},[390,395],{"type":42,"tag":184,"props":391,"children":392},{},[393],{"type":48,"value":394},"NUnit",{"type":42,"tag":184,"props":396,"children":397},{},[398,403,404,409,410,415,416],{"type":42,"tag":87,"props":399,"children":401},{"className":400},[],[402],{"type":48,"value":327},{"type":48,"value":329},{"type":42,"tag":87,"props":405,"children":407},{"className":406},[],[408],{"type":48,"value":335},{"type":48,"value":329},{"type":42,"tag":87,"props":411,"children":413},{"className":412},[],[414],{"type":48,"value":349},{"type":48,"value":329},{"type":42,"tag":87,"props":417,"children":419},{"className":418},[],[420],{"type":48,"value":356},{"type":42,"tag":51,"props":422,"children":423},{},[424,426,432],{"type":48,"value":425},"An expression without an operator is treated as ",{"type":42,"tag":87,"props":427,"children":429},{"className":428},[],[430],{"type":48,"value":431},"FullyQualifiedName~\u003Cvalue>",{"type":48,"value":70},{"type":42,"tag":51,"props":434,"children":435},{},[436],{"type":42,"tag":57,"props":437,"children":438},{},[439],{"type":48,"value":440},"Examples (VSTest):",{"type":42,"tag":79,"props":442,"children":444},{"className":81,"code":443,"language":83,"meta":84,"style":84},"# Run tests whose name contains \"LoginTest\"\ndotnet test --filter \"Name~LoginTest\"\n\n# Run a specific test class\ndotnet test --filter \"ClassName=MyNamespace.MyTestClass\"\n\n# Run tests in a category\ndotnet test --filter \"TestCategory=Integration\"\n\n# Exclude a category\ndotnet test --filter \"TestCategory!=Slow\"\n\n# Combine: class AND category\ndotnet test --filter \"ClassName=MyNamespace.MyTestClass&TestCategory=Unit\"\n\n# Either of two classes\ndotnet test --filter \"ClassName=MyNamespace.ClassA|ClassName=MyNamespace.ClassB\"\n",[445],{"type":42,"tag":87,"props":446,"children":447},{"__ignoreMap":84},[448,457,488,497,506,535,543,552,581,589,598,627,635,644,673,681,690],{"type":42,"tag":91,"props":449,"children":450},{"class":93,"line":94},[451],{"type":42,"tag":91,"props":452,"children":454},{"style":453},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[455],{"type":48,"value":456},"# Run tests whose name contains \"LoginTest\"\n",{"type":42,"tag":91,"props":458,"children":460},{"class":93,"line":459},2,[461,465,469,473,478,483],{"type":42,"tag":91,"props":462,"children":463},{"style":98},[464],{"type":48,"value":8},{"type":42,"tag":91,"props":466,"children":467},{"style":103},[468],{"type":48,"value":106},{"type":42,"tag":91,"props":470,"children":471},{"style":103},[472],{"type":48,"value":111},{"type":42,"tag":91,"props":474,"children":475},{"style":114},[476],{"type":48,"value":477}," \"",{"type":42,"tag":91,"props":479,"children":480},{"style":103},[481],{"type":48,"value":482},"Name~LoginTest",{"type":42,"tag":91,"props":484,"children":485},{"style":114},[486],{"type":48,"value":487},"\"\n",{"type":42,"tag":91,"props":489,"children":491},{"class":93,"line":490},3,[492],{"type":42,"tag":91,"props":493,"children":494},{"emptyLinePlaceholder":37},[495],{"type":48,"value":496},"\n",{"type":42,"tag":91,"props":498,"children":500},{"class":93,"line":499},4,[501],{"type":42,"tag":91,"props":502,"children":503},{"style":453},[504],{"type":48,"value":505},"# Run a specific test class\n",{"type":42,"tag":91,"props":507,"children":509},{"class":93,"line":508},5,[510,514,518,522,526,531],{"type":42,"tag":91,"props":511,"children":512},{"style":98},[513],{"type":48,"value":8},{"type":42,"tag":91,"props":515,"children":516},{"style":103},[517],{"type":48,"value":106},{"type":42,"tag":91,"props":519,"children":520},{"style":103},[521],{"type":48,"value":111},{"type":42,"tag":91,"props":523,"children":524},{"style":114},[525],{"type":48,"value":477},{"type":42,"tag":91,"props":527,"children":528},{"style":103},[529],{"type":48,"value":530},"ClassName=MyNamespace.MyTestClass",{"type":42,"tag":91,"props":532,"children":533},{"style":114},[534],{"type":48,"value":487},{"type":42,"tag":91,"props":536,"children":538},{"class":93,"line":537},6,[539],{"type":42,"tag":91,"props":540,"children":541},{"emptyLinePlaceholder":37},[542],{"type":48,"value":496},{"type":42,"tag":91,"props":544,"children":546},{"class":93,"line":545},7,[547],{"type":42,"tag":91,"props":548,"children":549},{"style":453},[550],{"type":48,"value":551},"# Run tests in a category\n",{"type":42,"tag":91,"props":553,"children":555},{"class":93,"line":554},8,[556,560,564,568,572,577],{"type":42,"tag":91,"props":557,"children":558},{"style":98},[559],{"type":48,"value":8},{"type":42,"tag":91,"props":561,"children":562},{"style":103},[563],{"type":48,"value":106},{"type":42,"tag":91,"props":565,"children":566},{"style":103},[567],{"type":48,"value":111},{"type":42,"tag":91,"props":569,"children":570},{"style":114},[571],{"type":48,"value":477},{"type":42,"tag":91,"props":573,"children":574},{"style":103},[575],{"type":48,"value":576},"TestCategory=Integration",{"type":42,"tag":91,"props":578,"children":579},{"style":114},[580],{"type":48,"value":487},{"type":42,"tag":91,"props":582,"children":584},{"class":93,"line":583},9,[585],{"type":42,"tag":91,"props":586,"children":587},{"emptyLinePlaceholder":37},[588],{"type":48,"value":496},{"type":42,"tag":91,"props":590,"children":592},{"class":93,"line":591},10,[593],{"type":42,"tag":91,"props":594,"children":595},{"style":453},[596],{"type":48,"value":597},"# Exclude a category\n",{"type":42,"tag":91,"props":599,"children":601},{"class":93,"line":600},11,[602,606,610,614,618,623],{"type":42,"tag":91,"props":603,"children":604},{"style":98},[605],{"type":48,"value":8},{"type":42,"tag":91,"props":607,"children":608},{"style":103},[609],{"type":48,"value":106},{"type":42,"tag":91,"props":611,"children":612},{"style":103},[613],{"type":48,"value":111},{"type":42,"tag":91,"props":615,"children":616},{"style":114},[617],{"type":48,"value":477},{"type":42,"tag":91,"props":619,"children":620},{"style":103},[621],{"type":48,"value":622},"TestCategory!=Slow",{"type":42,"tag":91,"props":624,"children":625},{"style":114},[626],{"type":48,"value":487},{"type":42,"tag":91,"props":628,"children":630},{"class":93,"line":629},12,[631],{"type":42,"tag":91,"props":632,"children":633},{"emptyLinePlaceholder":37},[634],{"type":48,"value":496},{"type":42,"tag":91,"props":636,"children":638},{"class":93,"line":637},13,[639],{"type":42,"tag":91,"props":640,"children":641},{"style":453},[642],{"type":48,"value":643},"# Combine: class AND category\n",{"type":42,"tag":91,"props":645,"children":647},{"class":93,"line":646},14,[648,652,656,660,664,669],{"type":42,"tag":91,"props":649,"children":650},{"style":98},[651],{"type":48,"value":8},{"type":42,"tag":91,"props":653,"children":654},{"style":103},[655],{"type":48,"value":106},{"type":42,"tag":91,"props":657,"children":658},{"style":103},[659],{"type":48,"value":111},{"type":42,"tag":91,"props":661,"children":662},{"style":114},[663],{"type":48,"value":477},{"type":42,"tag":91,"props":665,"children":666},{"style":103},[667],{"type":48,"value":668},"ClassName=MyNamespace.MyTestClass&TestCategory=Unit",{"type":42,"tag":91,"props":670,"children":671},{"style":114},[672],{"type":48,"value":487},{"type":42,"tag":91,"props":674,"children":676},{"class":93,"line":675},15,[677],{"type":42,"tag":91,"props":678,"children":679},{"emptyLinePlaceholder":37},[680],{"type":48,"value":496},{"type":42,"tag":91,"props":682,"children":684},{"class":93,"line":683},16,[685],{"type":42,"tag":91,"props":686,"children":687},{"style":453},[688],{"type":48,"value":689},"# Either of two classes\n",{"type":42,"tag":91,"props":691,"children":693},{"class":93,"line":692},17,[694,698,702,706,710,715],{"type":42,"tag":91,"props":695,"children":696},{"style":98},[697],{"type":48,"value":8},{"type":42,"tag":91,"props":699,"children":700},{"style":103},[701],{"type":48,"value":106},{"type":42,"tag":91,"props":703,"children":704},{"style":103},[705],{"type":48,"value":111},{"type":42,"tag":91,"props":707,"children":708},{"style":114},[709],{"type":48,"value":477},{"type":42,"tag":91,"props":711,"children":712},{"style":103},[713],{"type":48,"value":714},"ClassName=MyNamespace.ClassA|ClassName=MyNamespace.ClassB",{"type":42,"tag":91,"props":716,"children":717},{"style":114},[718],{"type":48,"value":487},{"type":42,"tag":72,"props":720,"children":722},{"id":721},"mtp-filters-mstest-and-nunit",[723],{"type":48,"value":724},"MTP filters — MSTest and NUnit",{"type":42,"tag":51,"props":726,"children":727},{},[728,730,743],{"type":48,"value":729},"MSTest and NUnit on MTP use the ",{"type":42,"tag":57,"props":731,"children":732},{},[733,735,741],{"type":48,"value":734},"same ",{"type":42,"tag":87,"props":736,"children":738},{"className":737},[],[739],{"type":48,"value":740},"--filter",{"type":48,"value":742}," syntax",{"type":48,"value":744}," as VSTest (same properties, operators, and combinators). The only difference is how the flag is passed:",{"type":42,"tag":79,"props":746,"children":748},{"className":81,"code":747,"language":83,"meta":84,"style":84},"# .NET SDK 8\u002F9 (after --)\ndotnet test -- --filter \"Name~LoginTest\"\n\n# .NET SDK 10+ (direct)\ndotnet test --filter \"Name~LoginTest\"\n",[749],{"type":42,"tag":87,"props":750,"children":751},{"__ignoreMap":84},[752,760,792,799,807],{"type":42,"tag":91,"props":753,"children":754},{"class":93,"line":94},[755],{"type":42,"tag":91,"props":756,"children":757},{"style":453},[758],{"type":48,"value":759},"# .NET SDK 8\u002F9 (after --)\n",{"type":42,"tag":91,"props":761,"children":762},{"class":93,"line":459},[763,767,771,776,780,784,788],{"type":42,"tag":91,"props":764,"children":765},{"style":98},[766],{"type":48,"value":8},{"type":42,"tag":91,"props":768,"children":769},{"style":103},[770],{"type":48,"value":106},{"type":42,"tag":91,"props":772,"children":773},{"style":103},[774],{"type":48,"value":775}," --",{"type":42,"tag":91,"props":777,"children":778},{"style":103},[779],{"type":48,"value":111},{"type":42,"tag":91,"props":781,"children":782},{"style":114},[783],{"type":48,"value":477},{"type":42,"tag":91,"props":785,"children":786},{"style":103},[787],{"type":48,"value":482},{"type":42,"tag":91,"props":789,"children":790},{"style":114},[791],{"type":48,"value":487},{"type":42,"tag":91,"props":793,"children":794},{"class":93,"line":490},[795],{"type":42,"tag":91,"props":796,"children":797},{"emptyLinePlaceholder":37},[798],{"type":48,"value":496},{"type":42,"tag":91,"props":800,"children":801},{"class":93,"line":499},[802],{"type":42,"tag":91,"props":803,"children":804},{"style":453},[805],{"type":48,"value":806},"# .NET SDK 10+ (direct)\n",{"type":42,"tag":91,"props":808,"children":809},{"class":93,"line":508},[810,814,818,822,826,830],{"type":42,"tag":91,"props":811,"children":812},{"style":98},[813],{"type":48,"value":8},{"type":42,"tag":91,"props":815,"children":816},{"style":103},[817],{"type":48,"value":106},{"type":42,"tag":91,"props":819,"children":820},{"style":103},[821],{"type":48,"value":111},{"type":42,"tag":91,"props":823,"children":824},{"style":114},[825],{"type":48,"value":477},{"type":42,"tag":91,"props":827,"children":828},{"style":103},[829],{"type":48,"value":482},{"type":42,"tag":91,"props":831,"children":832},{"style":114},[833],{"type":48,"value":487},{"type":42,"tag":72,"props":835,"children":837},{"id":836},"mtp-filters-xunit-v3",[838],{"type":48,"value":839},"MTP filters — xUnit (v3)",{"type":42,"tag":51,"props":841,"children":842},{},[843,845,850,852,857],{"type":48,"value":844},"xUnit v3 on MTP uses ",{"type":42,"tag":57,"props":846,"children":847},{},[848],{"type":48,"value":849},"framework-specific filter flags",{"type":48,"value":851}," instead of the generic ",{"type":42,"tag":87,"props":853,"children":855},{"className":854},[],[856],{"type":48,"value":740},{"type":48,"value":858}," expression:",{"type":42,"tag":154,"props":860,"children":861},{},[862,878],{"type":42,"tag":158,"props":863,"children":864},{},[865],{"type":42,"tag":162,"props":866,"children":867},{},[868,873],{"type":42,"tag":166,"props":869,"children":870},{},[871],{"type":48,"value":872},"Flag",{"type":42,"tag":166,"props":874,"children":875},{},[876],{"type":48,"value":877},"Description",{"type":42,"tag":177,"props":879,"children":880},{},[881,898,915,932,949,966,983,1000],{"type":42,"tag":162,"props":882,"children":883},{},[884,893],{"type":42,"tag":184,"props":885,"children":886},{},[887],{"type":42,"tag":87,"props":888,"children":890},{"className":889},[],[891],{"type":48,"value":892},"--filter-class \"name\"",{"type":42,"tag":184,"props":894,"children":895},{},[896],{"type":48,"value":897},"Run all tests in a given class",{"type":42,"tag":162,"props":899,"children":900},{},[901,910],{"type":42,"tag":184,"props":902,"children":903},{},[904],{"type":42,"tag":87,"props":905,"children":907},{"className":906},[],[908],{"type":48,"value":909},"--filter-not-class \"name\"",{"type":42,"tag":184,"props":911,"children":912},{},[913],{"type":48,"value":914},"Exclude all tests in a given class",{"type":42,"tag":162,"props":916,"children":917},{},[918,927],{"type":42,"tag":184,"props":919,"children":920},{},[921],{"type":42,"tag":87,"props":922,"children":924},{"className":923},[],[925],{"type":48,"value":926},"--filter-method \"name\"",{"type":42,"tag":184,"props":928,"children":929},{},[930],{"type":48,"value":931},"Run a specific test method",{"type":42,"tag":162,"props":933,"children":934},{},[935,944],{"type":42,"tag":184,"props":936,"children":937},{},[938],{"type":42,"tag":87,"props":939,"children":941},{"className":940},[],[942],{"type":48,"value":943},"--filter-not-method \"name\"",{"type":42,"tag":184,"props":945,"children":946},{},[947],{"type":48,"value":948},"Exclude a specific test method",{"type":42,"tag":162,"props":950,"children":951},{},[952,961],{"type":42,"tag":184,"props":953,"children":954},{},[955],{"type":42,"tag":87,"props":956,"children":958},{"className":957},[],[959],{"type":48,"value":960},"--filter-namespace \"name\"",{"type":42,"tag":184,"props":962,"children":963},{},[964],{"type":48,"value":965},"Run all tests in a namespace",{"type":42,"tag":162,"props":967,"children":968},{},[969,978],{"type":42,"tag":184,"props":970,"children":971},{},[972],{"type":42,"tag":87,"props":973,"children":975},{"className":974},[],[976],{"type":48,"value":977},"--filter-not-namespace \"name\"",{"type":42,"tag":184,"props":979,"children":980},{},[981],{"type":48,"value":982},"Exclude all tests in a namespace",{"type":42,"tag":162,"props":984,"children":985},{},[986,995],{"type":42,"tag":184,"props":987,"children":988},{},[989],{"type":42,"tag":87,"props":990,"children":992},{"className":991},[],[993],{"type":48,"value":994},"--filter-trait \"name=value\"",{"type":42,"tag":184,"props":996,"children":997},{},[998],{"type":48,"value":999},"Run tests with a matching trait",{"type":42,"tag":162,"props":1001,"children":1002},{},[1003,1012],{"type":42,"tag":184,"props":1004,"children":1005},{},[1006],{"type":42,"tag":87,"props":1007,"children":1009},{"className":1008},[],[1010],{"type":48,"value":1011},"--filter-not-trait \"name=value\"",{"type":42,"tag":184,"props":1013,"children":1014},{},[1015],{"type":48,"value":1016},"Exclude tests with a matching trait",{"type":42,"tag":51,"props":1018,"children":1019},{},[1020,1022,1028],{"type":48,"value":1021},"Multiple values can be specified with a single flag: ",{"type":42,"tag":87,"props":1023,"children":1025},{"className":1024},[],[1026],{"type":48,"value":1027},"--filter-class Foo Bar",{"type":48,"value":70},{"type":42,"tag":79,"props":1030,"children":1032},{"className":81,"code":1031,"language":83,"meta":84,"style":84},"# .NET SDK 8\u002F9\ndotnet test -- --filter-class \"MyNamespace.LoginTests\"\n\n# .NET SDK 10+\ndotnet test --filter-class \"MyNamespace.LoginTests\"\n\n# Combine: namespace + trait\ndotnet test --filter-namespace \"MyApp.Tests.Integration\" --filter-trait \"Category=Smoke\"\n",[1033],{"type":42,"tag":87,"props":1034,"children":1035},{"__ignoreMap":84},[1036,1044,1077,1084,1092,1119,1126,1134],{"type":42,"tag":91,"props":1037,"children":1038},{"class":93,"line":94},[1039],{"type":42,"tag":91,"props":1040,"children":1041},{"style":453},[1042],{"type":48,"value":1043},"# .NET SDK 8\u002F9\n",{"type":42,"tag":91,"props":1045,"children":1046},{"class":93,"line":459},[1047,1051,1055,1059,1064,1068,1073],{"type":42,"tag":91,"props":1048,"children":1049},{"style":98},[1050],{"type":48,"value":8},{"type":42,"tag":91,"props":1052,"children":1053},{"style":103},[1054],{"type":48,"value":106},{"type":42,"tag":91,"props":1056,"children":1057},{"style":103},[1058],{"type":48,"value":775},{"type":42,"tag":91,"props":1060,"children":1061},{"style":103},[1062],{"type":48,"value":1063}," --filter-class",{"type":42,"tag":91,"props":1065,"children":1066},{"style":114},[1067],{"type":48,"value":477},{"type":42,"tag":91,"props":1069,"children":1070},{"style":103},[1071],{"type":48,"value":1072},"MyNamespace.LoginTests",{"type":42,"tag":91,"props":1074,"children":1075},{"style":114},[1076],{"type":48,"value":487},{"type":42,"tag":91,"props":1078,"children":1079},{"class":93,"line":490},[1080],{"type":42,"tag":91,"props":1081,"children":1082},{"emptyLinePlaceholder":37},[1083],{"type":48,"value":496},{"type":42,"tag":91,"props":1085,"children":1086},{"class":93,"line":499},[1087],{"type":42,"tag":91,"props":1088,"children":1089},{"style":453},[1090],{"type":48,"value":1091},"# .NET SDK 10+\n",{"type":42,"tag":91,"props":1093,"children":1094},{"class":93,"line":508},[1095,1099,1103,1107,1111,1115],{"type":42,"tag":91,"props":1096,"children":1097},{"style":98},[1098],{"type":48,"value":8},{"type":42,"tag":91,"props":1100,"children":1101},{"style":103},[1102],{"type":48,"value":106},{"type":42,"tag":91,"props":1104,"children":1105},{"style":103},[1106],{"type":48,"value":1063},{"type":42,"tag":91,"props":1108,"children":1109},{"style":114},[1110],{"type":48,"value":477},{"type":42,"tag":91,"props":1112,"children":1113},{"style":103},[1114],{"type":48,"value":1072},{"type":42,"tag":91,"props":1116,"children":1117},{"style":114},[1118],{"type":48,"value":487},{"type":42,"tag":91,"props":1120,"children":1121},{"class":93,"line":537},[1122],{"type":42,"tag":91,"props":1123,"children":1124},{"emptyLinePlaceholder":37},[1125],{"type":48,"value":496},{"type":42,"tag":91,"props":1127,"children":1128},{"class":93,"line":545},[1129],{"type":42,"tag":91,"props":1130,"children":1131},{"style":453},[1132],{"type":48,"value":1133},"# Combine: namespace + trait\n",{"type":42,"tag":91,"props":1135,"children":1136},{"class":93,"line":554},[1137,1141,1145,1150,1154,1159,1164,1169,1173,1178],{"type":42,"tag":91,"props":1138,"children":1139},{"style":98},[1140],{"type":48,"value":8},{"type":42,"tag":91,"props":1142,"children":1143},{"style":103},[1144],{"type":48,"value":106},{"type":42,"tag":91,"props":1146,"children":1147},{"style":103},[1148],{"type":48,"value":1149}," --filter-namespace",{"type":42,"tag":91,"props":1151,"children":1152},{"style":114},[1153],{"type":48,"value":477},{"type":42,"tag":91,"props":1155,"children":1156},{"style":103},[1157],{"type":48,"value":1158},"MyApp.Tests.Integration",{"type":42,"tag":91,"props":1160,"children":1161},{"style":114},[1162],{"type":48,"value":1163},"\"",{"type":42,"tag":91,"props":1165,"children":1166},{"style":103},[1167],{"type":48,"value":1168}," --filter-trait",{"type":42,"tag":91,"props":1170,"children":1171},{"style":114},[1172],{"type":48,"value":477},{"type":42,"tag":91,"props":1174,"children":1175},{"style":103},[1176],{"type":48,"value":1177},"Category=Smoke",{"type":42,"tag":91,"props":1179,"children":1180},{"style":114},[1181],{"type":48,"value":487},{"type":42,"tag":1183,"props":1184,"children":1186},"h3",{"id":1185},"xunit-v3-query-filter-language",[1187],{"type":48,"value":1188},"xUnit v3 query filter language",{"type":42,"tag":51,"props":1190,"children":1191},{},[1192,1194,1200],{"type":48,"value":1193},"For complex expressions, use ",{"type":42,"tag":87,"props":1195,"children":1197},{"className":1196},[],[1198],{"type":48,"value":1199},"--filter-query",{"type":48,"value":1201}," with a path-segment syntax:",{"type":42,"tag":79,"props":1203,"children":1207},{"className":1204,"code":1206,"language":48,"meta":84},[1205],"language-text","\u002F\u003CassemblyFilter>\u002F\u003CnamespaceFilter>\u002F\u003CclassFilter>\u002F\u003CmethodFilter>[traitName=traitValue]\n",[1208],{"type":42,"tag":87,"props":1209,"children":1210},{"__ignoreMap":84},[1211],{"type":48,"value":1206},{"type":42,"tag":51,"props":1213,"children":1214},{},[1215,1217,1223,1225],{"type":48,"value":1216},"Each segment matches against: assembly name, namespace, class name, method name. Use ",{"type":42,"tag":87,"props":1218,"children":1220},{"className":1219},[],[1221],{"type":48,"value":1222},"*",{"type":48,"value":1224}," for \"match all\" in any segment. Documentation: ",{"type":42,"tag":1226,"props":1227,"children":1231},"a",{"href":1228,"rel":1229},"https:\u002F\u002Fxunit.net\u002Fdocs\u002Fquery-filter-language",[1230],"nofollow",[1232],{"type":48,"value":1228},{"type":42,"tag":79,"props":1234,"children":1238},{"className":1235,"code":1236,"language":1237,"meta":84,"style":84},"language-shell shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# xUnit.net v3 MTP — using query language (assembly\u002Fnamespace\u002Fclass\u002Fmethod[trait])\ndotnet test -- --filter-query \"\u002F*\u002F*\u002F*IntegrationTests*\u002F*[Category=Smoke]\"\n","shell",[1239],{"type":42,"tag":87,"props":1240,"children":1241},{"__ignoreMap":84},[1242,1250],{"type":42,"tag":91,"props":1243,"children":1244},{"class":93,"line":94},[1245],{"type":42,"tag":91,"props":1246,"children":1247},{"style":453},[1248],{"type":48,"value":1249},"# xUnit.net v3 MTP — using query language (assembly\u002Fnamespace\u002Fclass\u002Fmethod[trait])\n",{"type":42,"tag":91,"props":1251,"children":1252},{"class":93,"line":459},[1253,1257,1261,1265,1270,1274,1279],{"type":42,"tag":91,"props":1254,"children":1255},{"style":98},[1256],{"type":48,"value":8},{"type":42,"tag":91,"props":1258,"children":1259},{"style":103},[1260],{"type":48,"value":106},{"type":42,"tag":91,"props":1262,"children":1263},{"style":103},[1264],{"type":48,"value":775},{"type":42,"tag":91,"props":1266,"children":1267},{"style":103},[1268],{"type":48,"value":1269}," --filter-query",{"type":42,"tag":91,"props":1271,"children":1272},{"style":114},[1273],{"type":48,"value":477},{"type":42,"tag":91,"props":1275,"children":1276},{"style":103},[1277],{"type":48,"value":1278},"\u002F*\u002F*\u002F*IntegrationTests*\u002F*[Category=Smoke]",{"type":42,"tag":91,"props":1280,"children":1281},{"style":114},[1282],{"type":48,"value":487},{"type":42,"tag":72,"props":1284,"children":1286},{"id":1285},"mtp-filters-tunit",[1287],{"type":48,"value":1288},"MTP filters — TUnit",{"type":42,"tag":51,"props":1290,"children":1291},{},[1292,1294,1300],{"type":48,"value":1293},"TUnit uses ",{"type":42,"tag":87,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":48,"value":1299},"--treenode-filter",{"type":48,"value":1301}," with a path-based syntax:",{"type":42,"tag":79,"props":1303,"children":1306},{"className":1304,"code":1305,"language":48,"meta":84},[1205],"--treenode-filter \"\u002F\u003CAssembly>\u002F\u003CNamespace>\u002F\u003CClassName>\u002F\u003CTestName>\"\n",[1307],{"type":42,"tag":87,"props":1308,"children":1309},{"__ignoreMap":84},[1310],{"type":48,"value":1305},{"type":42,"tag":51,"props":1312,"children":1313},{},[1314,1316,1321],{"type":48,"value":1315},"Wildcards (",{"type":42,"tag":87,"props":1317,"children":1319},{"className":1318},[],[1320],{"type":48,"value":1222},{"type":48,"value":1322},") are supported in any segment. Filter operators can be appended to test names for property-based filtering.",{"type":42,"tag":154,"props":1324,"children":1325},{},[1326,1340],{"type":42,"tag":158,"props":1327,"children":1328},{},[1329],{"type":42,"tag":162,"props":1330,"children":1331},{},[1332,1336],{"type":42,"tag":166,"props":1333,"children":1334},{},[1335],{"type":48,"value":170},{"type":42,"tag":166,"props":1337,"children":1338},{},[1339],{"type":48,"value":175},{"type":42,"tag":177,"props":1341,"children":1342},{},[1343,1359,1383,1399,1415],{"type":42,"tag":162,"props":1344,"children":1345},{},[1346,1354],{"type":42,"tag":184,"props":1347,"children":1348},{},[1349],{"type":42,"tag":87,"props":1350,"children":1352},{"className":1351},[],[1353],{"type":48,"value":1222},{"type":42,"tag":184,"props":1355,"children":1356},{},[1357],{"type":48,"value":1358},"Wildcard match",{"type":42,"tag":162,"props":1360,"children":1361},{},[1362,1370],{"type":42,"tag":184,"props":1363,"children":1364},{},[1365],{"type":42,"tag":87,"props":1366,"children":1368},{"className":1367},[],[1369],{"type":48,"value":192},{"type":42,"tag":184,"props":1371,"children":1372},{},[1373,1375,1381],{"type":48,"value":1374},"Exact property match (e.g., ",{"type":42,"tag":87,"props":1376,"children":1378},{"className":1377},[],[1379],{"type":48,"value":1380},"[Category=Unit]",{"type":48,"value":1382},")",{"type":42,"tag":162,"props":1384,"children":1385},{},[1386,1394],{"type":42,"tag":184,"props":1387,"children":1388},{},[1389],{"type":42,"tag":87,"props":1390,"children":1392},{"className":1391},[],[1393],{"type":48,"value":209},{"type":42,"tag":184,"props":1395,"children":1396},{},[1397],{"type":48,"value":1398},"Exclude property value",{"type":42,"tag":162,"props":1400,"children":1401},{},[1402,1410],{"type":42,"tag":184,"props":1403,"children":1404},{},[1405],{"type":42,"tag":87,"props":1406,"children":1408},{"className":1407},[],[1409],{"type":48,"value":272},{"type":42,"tag":184,"props":1411,"children":1412},{},[1413],{"type":48,"value":1414},"AND (combine conditions)",{"type":42,"tag":162,"props":1416,"children":1417},{},[1418,1426],{"type":42,"tag":184,"props":1419,"children":1420},{},[1421],{"type":42,"tag":87,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":48,"value":264},{"type":42,"tag":184,"props":1427,"children":1428},{},[1429],{"type":48,"value":1430},"OR (within a segment, requires parentheses)",{"type":42,"tag":51,"props":1432,"children":1433},{},[1434],{"type":42,"tag":57,"props":1435,"children":1436},{},[1437],{"type":48,"value":1438},"Examples (TUnit):",{"type":42,"tag":79,"props":1440,"children":1442},{"className":81,"code":1441,"language":83,"meta":84,"style":84},"# All tests in a class\ndotnet run --treenode-filter \"\u002F*\u002F*\u002FLoginTests\u002F*\"\n\n# A specific test\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002FAcceptCookiesTest\"\n\n# By namespace prefix (wildcard)\ndotnet run --treenode-filter \"\u002F*\u002FMyProject.Tests.Api*\u002F*\u002F*\"\n\n# By custom property\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002F*[Category=Smoke]\"\n\n# Exclude by property\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F*\u002F*[Category!=Slow]\"\n\n# OR across classes\ndotnet run --treenode-filter \"\u002F*\u002F*\u002F(LoginTests)|(SignupTests)\u002F*\"\n\n# Combined: namespace + property\ndotnet run --treenode-filter \"\u002F*\u002FMyProject.Tests.Integration\u002F*\u002F*\u002F*[Priority=Critical]\"\n",[1443],{"type":42,"tag":87,"props":1444,"children":1445},{"__ignoreMap":84},[1446,1454,1484,1491,1499,1527,1534,1542,1570,1577,1585,1613,1620,1628,1656,1663,1671,1699,1707,1716],{"type":42,"tag":91,"props":1447,"children":1448},{"class":93,"line":94},[1449],{"type":42,"tag":91,"props":1450,"children":1451},{"style":453},[1452],{"type":48,"value":1453},"# All tests in a class\n",{"type":42,"tag":91,"props":1455,"children":1456},{"class":93,"line":459},[1457,1461,1466,1471,1475,1480],{"type":42,"tag":91,"props":1458,"children":1459},{"style":98},[1460],{"type":48,"value":8},{"type":42,"tag":91,"props":1462,"children":1463},{"style":103},[1464],{"type":48,"value":1465}," run",{"type":42,"tag":91,"props":1467,"children":1468},{"style":103},[1469],{"type":48,"value":1470}," --treenode-filter",{"type":42,"tag":91,"props":1472,"children":1473},{"style":114},[1474],{"type":48,"value":477},{"type":42,"tag":91,"props":1476,"children":1477},{"style":103},[1478],{"type":48,"value":1479},"\u002F*\u002F*\u002FLoginTests\u002F*",{"type":42,"tag":91,"props":1481,"children":1482},{"style":114},[1483],{"type":48,"value":487},{"type":42,"tag":91,"props":1485,"children":1486},{"class":93,"line":490},[1487],{"type":42,"tag":91,"props":1488,"children":1489},{"emptyLinePlaceholder":37},[1490],{"type":48,"value":496},{"type":42,"tag":91,"props":1492,"children":1493},{"class":93,"line":499},[1494],{"type":42,"tag":91,"props":1495,"children":1496},{"style":453},[1497],{"type":48,"value":1498},"# A specific test\n",{"type":42,"tag":91,"props":1500,"children":1501},{"class":93,"line":508},[1502,1506,1510,1514,1518,1523],{"type":42,"tag":91,"props":1503,"children":1504},{"style":98},[1505],{"type":48,"value":8},{"type":42,"tag":91,"props":1507,"children":1508},{"style":103},[1509],{"type":48,"value":1465},{"type":42,"tag":91,"props":1511,"children":1512},{"style":103},[1513],{"type":48,"value":1470},{"type":42,"tag":91,"props":1515,"children":1516},{"style":114},[1517],{"type":48,"value":477},{"type":42,"tag":91,"props":1519,"children":1520},{"style":103},[1521],{"type":48,"value":1522},"\u002F*\u002F*\u002F*\u002FAcceptCookiesTest",{"type":42,"tag":91,"props":1524,"children":1525},{"style":114},[1526],{"type":48,"value":487},{"type":42,"tag":91,"props":1528,"children":1529},{"class":93,"line":537},[1530],{"type":42,"tag":91,"props":1531,"children":1532},{"emptyLinePlaceholder":37},[1533],{"type":48,"value":496},{"type":42,"tag":91,"props":1535,"children":1536},{"class":93,"line":545},[1537],{"type":42,"tag":91,"props":1538,"children":1539},{"style":453},[1540],{"type":48,"value":1541},"# By namespace prefix (wildcard)\n",{"type":42,"tag":91,"props":1543,"children":1544},{"class":93,"line":554},[1545,1549,1553,1557,1561,1566],{"type":42,"tag":91,"props":1546,"children":1547},{"style":98},[1548],{"type":48,"value":8},{"type":42,"tag":91,"props":1550,"children":1551},{"style":103},[1552],{"type":48,"value":1465},{"type":42,"tag":91,"props":1554,"children":1555},{"style":103},[1556],{"type":48,"value":1470},{"type":42,"tag":91,"props":1558,"children":1559},{"style":114},[1560],{"type":48,"value":477},{"type":42,"tag":91,"props":1562,"children":1563},{"style":103},[1564],{"type":48,"value":1565},"\u002F*\u002FMyProject.Tests.Api*\u002F*\u002F*",{"type":42,"tag":91,"props":1567,"children":1568},{"style":114},[1569],{"type":48,"value":487},{"type":42,"tag":91,"props":1571,"children":1572},{"class":93,"line":583},[1573],{"type":42,"tag":91,"props":1574,"children":1575},{"emptyLinePlaceholder":37},[1576],{"type":48,"value":496},{"type":42,"tag":91,"props":1578,"children":1579},{"class":93,"line":591},[1580],{"type":42,"tag":91,"props":1581,"children":1582},{"style":453},[1583],{"type":48,"value":1584},"# By custom property\n",{"type":42,"tag":91,"props":1586,"children":1587},{"class":93,"line":600},[1588,1592,1596,1600,1604,1609],{"type":42,"tag":91,"props":1589,"children":1590},{"style":98},[1591],{"type":48,"value":8},{"type":42,"tag":91,"props":1593,"children":1594},{"style":103},[1595],{"type":48,"value":1465},{"type":42,"tag":91,"props":1597,"children":1598},{"style":103},[1599],{"type":48,"value":1470},{"type":42,"tag":91,"props":1601,"children":1602},{"style":114},[1603],{"type":48,"value":477},{"type":42,"tag":91,"props":1605,"children":1606},{"style":103},[1607],{"type":48,"value":1608},"\u002F*\u002F*\u002F*\u002F*[Category=Smoke]",{"type":42,"tag":91,"props":1610,"children":1611},{"style":114},[1612],{"type":48,"value":487},{"type":42,"tag":91,"props":1614,"children":1615},{"class":93,"line":629},[1616],{"type":42,"tag":91,"props":1617,"children":1618},{"emptyLinePlaceholder":37},[1619],{"type":48,"value":496},{"type":42,"tag":91,"props":1621,"children":1622},{"class":93,"line":637},[1623],{"type":42,"tag":91,"props":1624,"children":1625},{"style":453},[1626],{"type":48,"value":1627},"# Exclude by property\n",{"type":42,"tag":91,"props":1629,"children":1630},{"class":93,"line":646},[1631,1635,1639,1643,1647,1652],{"type":42,"tag":91,"props":1632,"children":1633},{"style":98},[1634],{"type":48,"value":8},{"type":42,"tag":91,"props":1636,"children":1637},{"style":103},[1638],{"type":48,"value":1465},{"type":42,"tag":91,"props":1640,"children":1641},{"style":103},[1642],{"type":48,"value":1470},{"type":42,"tag":91,"props":1644,"children":1645},{"style":114},[1646],{"type":48,"value":477},{"type":42,"tag":91,"props":1648,"children":1649},{"style":103},[1650],{"type":48,"value":1651},"\u002F*\u002F*\u002F*\u002F*[Category!=Slow]",{"type":42,"tag":91,"props":1653,"children":1654},{"style":114},[1655],{"type":48,"value":487},{"type":42,"tag":91,"props":1657,"children":1658},{"class":93,"line":675},[1659],{"type":42,"tag":91,"props":1660,"children":1661},{"emptyLinePlaceholder":37},[1662],{"type":48,"value":496},{"type":42,"tag":91,"props":1664,"children":1665},{"class":93,"line":683},[1666],{"type":42,"tag":91,"props":1667,"children":1668},{"style":453},[1669],{"type":48,"value":1670},"# OR across classes\n",{"type":42,"tag":91,"props":1672,"children":1673},{"class":93,"line":692},[1674,1678,1682,1686,1690,1695],{"type":42,"tag":91,"props":1675,"children":1676},{"style":98},[1677],{"type":48,"value":8},{"type":42,"tag":91,"props":1679,"children":1680},{"style":103},[1681],{"type":48,"value":1465},{"type":42,"tag":91,"props":1683,"children":1684},{"style":103},[1685],{"type":48,"value":1470},{"type":42,"tag":91,"props":1687,"children":1688},{"style":114},[1689],{"type":48,"value":477},{"type":42,"tag":91,"props":1691,"children":1692},{"style":103},[1693],{"type":48,"value":1694},"\u002F*\u002F*\u002F(LoginTests)|(SignupTests)\u002F*",{"type":42,"tag":91,"props":1696,"children":1697},{"style":114},[1698],{"type":48,"value":487},{"type":42,"tag":91,"props":1700,"children":1702},{"class":93,"line":1701},18,[1703],{"type":42,"tag":91,"props":1704,"children":1705},{"emptyLinePlaceholder":37},[1706],{"type":48,"value":496},{"type":42,"tag":91,"props":1708,"children":1710},{"class":93,"line":1709},19,[1711],{"type":42,"tag":91,"props":1712,"children":1713},{"style":453},[1714],{"type":48,"value":1715},"# Combined: namespace + property\n",{"type":42,"tag":91,"props":1717,"children":1719},{"class":93,"line":1718},20,[1720,1724,1728,1732,1736,1741],{"type":42,"tag":91,"props":1721,"children":1722},{"style":98},[1723],{"type":48,"value":8},{"type":42,"tag":91,"props":1725,"children":1726},{"style":103},[1727],{"type":48,"value":1465},{"type":42,"tag":91,"props":1729,"children":1730},{"style":103},[1731],{"type":48,"value":1470},{"type":42,"tag":91,"props":1733,"children":1734},{"style":114},[1735],{"type":48,"value":477},{"type":42,"tag":91,"props":1737,"children":1738},{"style":103},[1739],{"type":48,"value":1740},"\u002F*\u002FMyProject.Tests.Integration\u002F*\u002F*\u002F*[Priority=Critical]",{"type":42,"tag":91,"props":1742,"children":1743},{"style":114},[1744],{"type":48,"value":487},{"type":42,"tag":72,"props":1746,"children":1748},{"id":1747},"vstest-mtp-filter-translation-for-migration",[1749],{"type":48,"value":1750},"VSTest → MTP filter translation (for migration)",{"type":42,"tag":51,"props":1752,"children":1753},{},[1754,1766,1768,1773],{"type":42,"tag":57,"props":1755,"children":1756},{},[1757,1759,1765],{"type":48,"value":1758},"MSTest, NUnit, and xUnit.net v2 (with ",{"type":42,"tag":87,"props":1760,"children":1762},{"className":1761},[],[1763],{"type":48,"value":1764},"YTest.MTP.XUnit2",{"type":48,"value":1382},{"type":48,"value":1767},": The VSTest ",{"type":42,"tag":87,"props":1769,"children":1771},{"className":1770},[],[1772],{"type":48,"value":740},{"type":48,"value":1774}," syntax is identical on both VSTest and MTP. No changes needed.",{"type":42,"tag":51,"props":1776,"children":1777},{},[1778,1783,1785,1790],{"type":42,"tag":57,"props":1779,"children":1780},{},[1781],{"type":48,"value":1782},"xUnit.net v3 (native MTP)",{"type":48,"value":1784},": xUnit.net v3 does NOT support the VSTest ",{"type":42,"tag":87,"props":1786,"children":1788},{"className":1787},[],[1789],{"type":48,"value":740},{"type":48,"value":1791}," syntax on MTP. Translate filters using xUnit.net v3's native options:",{"type":42,"tag":154,"props":1793,"children":1794},{},[1795,1822],{"type":42,"tag":158,"props":1796,"children":1797},{},[1798],{"type":42,"tag":162,"props":1799,"children":1800},{},[1801,1812,1817],{"type":42,"tag":166,"props":1802,"children":1803},{},[1804,1806,1811],{"type":48,"value":1805},"VSTest ",{"type":42,"tag":87,"props":1807,"children":1809},{"className":1808},[],[1810],{"type":48,"value":740},{"type":48,"value":742},{"type":42,"tag":166,"props":1813,"children":1814},{},[1815],{"type":48,"value":1816},"xUnit.net v3 MTP equivalent",{"type":42,"tag":166,"props":1818,"children":1819},{},[1820],{"type":48,"value":1821},"Notes",{"type":42,"tag":177,"props":1823,"children":1824},{},[1825,1851,1877,1903,1931],{"type":42,"tag":162,"props":1826,"children":1827},{},[1828,1837,1846],{"type":42,"tag":184,"props":1829,"children":1830},{},[1831],{"type":42,"tag":87,"props":1832,"children":1834},{"className":1833},[],[1835],{"type":48,"value":1836},"FullyQualifiedName~ClassName",{"type":42,"tag":184,"props":1838,"children":1839},{},[1840],{"type":42,"tag":87,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":48,"value":1845},"--filter-class *ClassName*",{"type":42,"tag":184,"props":1847,"children":1848},{},[1849],{"type":48,"value":1850},"Wildcards required for substring match",{"type":42,"tag":162,"props":1852,"children":1853},{},[1854,1863,1872],{"type":42,"tag":184,"props":1855,"children":1856},{},[1857],{"type":42,"tag":87,"props":1858,"children":1860},{"className":1859},[],[1861],{"type":48,"value":1862},"FullyQualifiedName=Ns.Class.Method",{"type":42,"tag":184,"props":1864,"children":1865},{},[1866],{"type":42,"tag":87,"props":1867,"children":1869},{"className":1868},[],[1870],{"type":48,"value":1871},"--filter-method Ns.Class.Method",{"type":42,"tag":184,"props":1873,"children":1874},{},[1875],{"type":48,"value":1876},"Exact match on fully qualified method",{"type":42,"tag":162,"props":1878,"children":1879},{},[1880,1889,1898],{"type":42,"tag":184,"props":1881,"children":1882},{},[1883],{"type":42,"tag":87,"props":1884,"children":1886},{"className":1885},[],[1887],{"type":48,"value":1888},"Name=MethodName",{"type":42,"tag":184,"props":1890,"children":1891},{},[1892],{"type":42,"tag":87,"props":1893,"children":1895},{"className":1894},[],[1896],{"type":48,"value":1897},"--filter-method *MethodName*",{"type":42,"tag":184,"props":1899,"children":1900},{},[1901],{"type":48,"value":1902},"Wildcards for substring match",{"type":42,"tag":162,"props":1904,"children":1905},{},[1906,1917,1926],{"type":42,"tag":184,"props":1907,"children":1908},{},[1909,1915],{"type":42,"tag":87,"props":1910,"children":1912},{"className":1911},[],[1913],{"type":48,"value":1914},"Category=Value",{"type":48,"value":1916}," (trait)",{"type":42,"tag":184,"props":1918,"children":1919},{},[1920],{"type":42,"tag":87,"props":1921,"children":1923},{"className":1922},[],[1924],{"type":48,"value":1925},"--filter-trait \"Category=Value\"",{"type":42,"tag":184,"props":1927,"children":1928},{},[1929],{"type":48,"value":1930},"Filter by trait name\u002Fvalue pair",{"type":42,"tag":162,"props":1932,"children":1933},{},[1934,1939,1948],{"type":42,"tag":184,"props":1935,"children":1936},{},[1937],{"type":48,"value":1938},"Complex expressions",{"type":42,"tag":184,"props":1940,"children":1941},{},[1942],{"type":42,"tag":87,"props":1943,"children":1945},{"className":1944},[],[1946],{"type":48,"value":1947},"--filter-query \"expr\"",{"type":42,"tag":184,"props":1949,"children":1950},{},[1951],{"type":48,"value":1952},"Uses xUnit.net query filter language (see above)",{"type":42,"tag":1954,"props":1955,"children":1956},"style",{},[1957],{"type":48,"value":1958},"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":1960,"total":2067},[1961,1978,1993,2011,2023,2043,2053],{"slug":1962,"name":1962,"fn":1963,"description":1964,"org":1965,"tags":1966,"stars":22,"repoUrl":23,"updatedAt":1977},"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},[1967,1968,1971,1974],{"name":13,"slug":14,"type":15},{"name":1969,"slug":1970,"type":15},"Code Analysis","code-analysis",{"name":1972,"slug":1973,"type":15},"Debugging","debugging",{"name":1975,"slug":1976,"type":15},"Performance","performance","2026-07-12T08:23:25.400375",{"slug":1979,"name":1979,"fn":1980,"description":1981,"org":1982,"tags":1983,"stars":22,"repoUrl":23,"updatedAt":1992},"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},[1984,1985,1988,1989],{"name":13,"slug":14,"type":15},{"name":1986,"slug":1987,"type":15},"Android","android",{"name":1972,"slug":1973,"type":15},{"name":1990,"slug":1991,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":1994,"name":1994,"fn":1995,"description":1996,"org":1997,"tags":1998,"stars":22,"repoUrl":23,"updatedAt":2010},"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},[1999,2000,2001,2004,2007],{"name":13,"slug":14,"type":15},{"name":1972,"slug":1973,"type":15},{"name":2002,"slug":2003,"type":15},"iOS","ios",{"name":2005,"slug":2006,"type":15},"macOS","macos",{"name":2008,"slug":2009,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2015,"tags":2016,"stars":22,"repoUrl":23,"updatedAt":2022},"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},[2017,2018,2021],{"name":1969,"slug":1970,"type":15},{"name":2019,"slug":2020,"type":15},"QA","qa",{"name":20,"slug":21,"type":15},"2026-07-12T08:23:51.277743",{"slug":2024,"name":2024,"fn":2025,"description":2026,"org":2027,"tags":2028,"stars":22,"repoUrl":23,"updatedAt":2042},"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},[2029,2030,2033,2036,2039],{"name":13,"slug":14,"type":15},{"name":2031,"slug":2032,"type":15},"Blazor","blazor",{"name":2034,"slug":2035,"type":15},"C#","csharp",{"name":2037,"slug":2038,"type":15},"UI Components","ui-components",{"name":2040,"slug":2041,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":2044,"name":2044,"fn":2045,"description":2046,"org":2047,"tags":2048,"stars":22,"repoUrl":23,"updatedAt":2052},"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},[2049,2050,2051],{"name":1969,"slug":1970,"type":15},{"name":1972,"slug":1973,"type":15},{"name":1990,"slug":1991,"type":15},"2026-07-12T08:21:34.637923",{"slug":2054,"name":2054,"fn":2055,"description":2056,"org":2057,"tags":2058,"stars":22,"repoUrl":23,"updatedAt":2066},"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},[2059,2062,2063],{"name":2060,"slug":2061,"type":15},"Build","build",{"name":1972,"slug":1973,"type":15},{"name":2064,"slug":2065,"type":15},"Engineering","engineering","2026-07-19T05:38:19.340791",96,{"items":2069,"total":2174},[2070,2082,2089,2096,2104,2110,2118,2124,2130,2140,2153,2164],{"slug":2071,"name":2071,"fn":2072,"description":2073,"org":2074,"tags":2075,"stars":2079,"repoUrl":2080,"updatedAt":2081},"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},[2076,2077,2078],{"name":13,"slug":14,"type":15},{"name":2064,"slug":2065,"type":15},{"name":1975,"slug":1976,"type":15},5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1962,"name":1962,"fn":1963,"description":1964,"org":2083,"tags":2084,"stars":22,"repoUrl":23,"updatedAt":1977},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2085,2086,2087,2088],{"name":13,"slug":14,"type":15},{"name":1969,"slug":1970,"type":15},{"name":1972,"slug":1973,"type":15},{"name":1975,"slug":1976,"type":15},{"slug":1979,"name":1979,"fn":1980,"description":1981,"org":2090,"tags":2091,"stars":22,"repoUrl":23,"updatedAt":1992},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2092,2093,2094,2095],{"name":13,"slug":14,"type":15},{"name":1986,"slug":1987,"type":15},{"name":1972,"slug":1973,"type":15},{"name":1990,"slug":1991,"type":15},{"slug":1994,"name":1994,"fn":1995,"description":1996,"org":2097,"tags":2098,"stars":22,"repoUrl":23,"updatedAt":2010},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2099,2100,2101,2102,2103],{"name":13,"slug":14,"type":15},{"name":1972,"slug":1973,"type":15},{"name":2002,"slug":2003,"type":15},{"name":2005,"slug":2006,"type":15},{"name":2008,"slug":2009,"type":15},{"slug":2012,"name":2012,"fn":2013,"description":2014,"org":2105,"tags":2106,"stars":22,"repoUrl":23,"updatedAt":2022},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2107,2108,2109],{"name":1969,"slug":1970,"type":15},{"name":2019,"slug":2020,"type":15},{"name":20,"slug":21,"type":15},{"slug":2024,"name":2024,"fn":2025,"description":2026,"org":2111,"tags":2112,"stars":22,"repoUrl":23,"updatedAt":2042},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2113,2114,2115,2116,2117],{"name":13,"slug":14,"type":15},{"name":2031,"slug":2032,"type":15},{"name":2034,"slug":2035,"type":15},{"name":2037,"slug":2038,"type":15},{"name":2040,"slug":2041,"type":15},{"slug":2044,"name":2044,"fn":2045,"description":2046,"org":2119,"tags":2120,"stars":22,"repoUrl":23,"updatedAt":2052},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2121,2122,2123],{"name":1969,"slug":1970,"type":15},{"name":1972,"slug":1973,"type":15},{"name":1990,"slug":1991,"type":15},{"slug":2054,"name":2054,"fn":2055,"description":2056,"org":2125,"tags":2126,"stars":22,"repoUrl":23,"updatedAt":2066},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2127,2128,2129],{"name":2060,"slug":2061,"type":15},{"name":1972,"slug":1973,"type":15},{"name":2064,"slug":2065,"type":15},{"slug":2131,"name":2131,"fn":2132,"description":2133,"org":2134,"tags":2135,"stars":22,"repoUrl":23,"updatedAt":2139},"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},[2136,2137,2138],{"name":13,"slug":14,"type":15},{"name":2064,"slug":2065,"type":15},{"name":1975,"slug":1976,"type":15},"2026-07-19T05:38:18.364937",{"slug":2141,"name":2141,"fn":2142,"description":2143,"org":2144,"tags":2145,"stars":22,"repoUrl":23,"updatedAt":2152},"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},[2146,2147,2150,2151],{"name":2064,"slug":2065,"type":15},{"name":2148,"slug":2149,"type":15},"Monitoring","monitoring",{"name":1975,"slug":1976,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:21:35.865649",{"slug":2154,"name":2154,"fn":2155,"description":2156,"org":2157,"tags":2158,"stars":22,"repoUrl":23,"updatedAt":2163},"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},[2159,2160,2161,2162],{"name":13,"slug":14,"type":15},{"name":1972,"slug":1973,"type":15},{"name":2064,"slug":2065,"type":15},{"name":1975,"slug":1976,"type":15},"2026-07-12T08:21:40.961722",{"slug":2165,"name":2165,"fn":2166,"description":2167,"org":2168,"tags":2169,"stars":22,"repoUrl":23,"updatedAt":2173},"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},[2170,2171,2172],{"name":1972,"slug":1973,"type":15},{"name":2064,"slug":2065,"type":15},{"name":2019,"slug":2020,"type":15},"2026-07-19T05:38:14.336279",144]