File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1+ #### 1.4.0.7 -
2+ * fix 410 - Symbols for C# fields (and especially enum fields)
3+ * Expose implemented abstract slots
4+ * Integrate with visualfsharp master
5+
16#### 1.4.0.6 -
27* fix 423 - Symbols for non-standard C# events
38* fix 235 - XmlDocSigs for references assemblies
Original file line number Diff line number Diff line change @@ -1088,13 +1088,16 @@ module Shim =
10881088 let isInvalidPath ( p : string ) =
10891089 String.IsNullOrEmpty( p) || p.IndexOfAny( System.IO.Path.GetInvalidPathChars()) <> - 1
10901090
1091+ let isInvalidFilename ( p : string ) =
1092+ String.IsNullOrEmpty( p) || p.IndexOfAny( System.IO.Path.GetInvalidFileNameChars()) <> - 1
1093+
10911094 let isInvalidDirectory ( d : string ) =
10921095 d= null || d.IndexOfAny( Path.GetInvalidPathChars()) <> - 1
10931096
10941097 isInvalidPath ( path) ||
10951098 let directory = Path.GetDirectoryName( path)
10961099 let filename = Path.GetFileName( path)
1097- isInvalidDirectory( directory) || isInvalidPath ( filename)
1100+ isInvalidDirectory( directory) || isInvalidFilename ( filename)
10981101
10991102 member __.GetTempPathShim () = System.IO.Path.GetTempPath()
11001103
You can’t perform that action at this time.
0 commit comments