JetBrains Rider 2026.1 Help

Language Injection Settings dialog: Generic C#

The dialog allows you to configure language injections for C# files. It opens from the the Preferences | Editor | Language Injection settings page Ctrl+Alt+S when you click the Add button and choose Generic C# from the context menu, or select an entry and click the Edit button.

Item

Description

Name

The name of the injection.

Language

The language to be injected.

  • ID: select the ID or the name of the language to be injected.

  • Prefix: specify a sequence of characters to be added before the corresponding string value.

  • Suffix: specify a sequence of characters to be added after the corresponding string value.

The prefix and suffix are optional.

Places Patterns

In this field, type the rules that define the context where you want JetBrains Rider recognize literals as injections.

Examples:

Inject JavaScript into HTML on* event attributes:

xmlAttribute().withLocalName(string().startsWith("on"))

Match an XML tag by name with a specific parent:

xmlTag().withLocalName("script").withParent(xmlTag().withLocalName("html"))

Multiple patterns

You can define multiple place patterns for a single injection rule. The injection activates if any of the patterns match (they are combined with OR logic). Add each pattern on a separate line.

Advanced

In this area, optionally specify additional settings to narrow the context where the injection rule is applicable and thus to enable more fine-grained control over the injection process.

  • Value patterntype a regular expression that determines the context to inject the language into. By using the first capturing group of the patterns as the target for injection, you can configure the procedure to have the language injected only into values that match a certain pattern or into multiple parts that match the pattern.

  • Single file - If the option is off, the fragments that match the value pattern are treated separately, as different "files" - for example from the fragment editor's viewpoint.

    If the option is on, the corresponding fragments are all merged together to form a single unit, or "file".

    Given the value pattern

    xxx (.+) yyy (.+) zzz

    and the fragment

    xxx select * yyy from family zzz,

    select * and from family are treated as two independent fragments (or "files") if the option is off. If the option is on, select * from family is treated as a single unit or "file".

30 April 2026