Ignore:
Timestamp:
Jun 17, 2024, 5:25:43 PM (5 months ago)
Author:
alloc
Message:

1.1.0.1 Release for V 1.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/WebServer/src/WebAPI/OpenApiHelpers.cs

    r466 r487  
    105105                }
    106106
    107                 private static readonly Regex pathMatcher = new Regex ("^\\s{1,2}(/\\S+):.*$", RegexOptions.Compiled | RegexOptions.CultureInvariant);
     107                private static readonly Regex pathMatcher = new Regex (@"^\s{1,2}(/\S+):.*$", RegexOptions.Compiled | RegexOptions.CultureInvariant);
    108108                private Dictionary<string, string> findExportedPaths (string _spec, string _replaceBasePath = null) {
    109109                        Dictionary<string, string> result = new Dictionary<string, string> ();
     
    161161                                                break;
    162162                                        case '\\':
    163                                                 _targetSb.Append ("\\\\");
     163                                                _targetSb.Append (@"\\");
    164164                                                break;
    165165                                        case '\b':
Note: See TracChangeset for help on using the changeset viewer.