Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/System.Management.Automation/engine/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1424,6 +1424,7 @@ private static class EmptyReadOnlyCollectionHolder<T>

internal static class Separators
{
internal static readonly char[] Backslash = new char[] { '\\' };
internal static readonly char[] Directory = new char[] { '\\', '/' };
internal static readonly char[] DirectoryOrDrive = new char[] { '\\', '/', ':' };
internal static readonly char[] SpaceOrTab = new char[] { ' ', '\t' };
Expand Down
3 changes: 3 additions & 0 deletions src/System.Management.Automation/resources/ParserStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1304,6 +1304,9 @@ ModuleVersion : Version of module to import. If used, ModuleName must represent
<data name="PsDscRunAsCredentialMergeErrorForCompositeResources" xml:space="preserve">
<value>Conflict in using PsDscRunAsCredential for Resource {0} because it already specifies PsDscRunAsCredential value. We can only use one PsDscRunAsCredential for the composite resource. </value>
</data>
<data name="PsDscMissingSchemaStore" xml:space="preserve">
<value>Unable to find DSC schema store at "{0}". Please ensure PSDesiredStateConfiguration v3 module is installed.</value>
</data>
<data name="ParserError" xml:space="preserve">
<value>{0}</value>
</data>
Expand Down