We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac9827 commit a561dfdCopy full SHA for a561dfd
1 file changed
src/FlowSynx.PluginCore/PluginMetadata.cs
@@ -16,7 +16,7 @@ public class PluginMetadata
16
/// A regular expression to validate identifiers.
17
/// Identifiers must start with a letter and contain only letters and digits.
18
/// </summary>
19
- private static readonly Regex ValidIdentifierRegex = new(@"^[A-Za-z][A-Za-z0-9]*$", RegexOptions.Compiled);
+ private static readonly Regex ValidIdentifierRegex = new(@"^[A-Za-z][A-Za-z0-9.]*$", RegexOptions.Compiled);
20
21
/// <summary>
22
/// Gets or sets the unique identifier of the plugin.
0 commit comments