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
+
1
6
#### 1.4.0.6 -
2
7
* fix 423 - Symbols for non-standard C# events
3
8
* fix 235 - XmlDocSigs for references assemblies
Original file line number Diff line number Diff line change @@ -1088,13 +1088,16 @@ module Shim =
1088
1088
let isInvalidPath ( p : string ) =
1089
1089
String.IsNullOrEmpty( p) || p.IndexOfAny( System.IO.Path.GetInvalidPathChars()) <> - 1
1090
1090
1091
+ let isInvalidFilename ( p : string ) =
1092
+ String.IsNullOrEmpty( p) || p.IndexOfAny( System.IO.Path.GetInvalidFileNameChars()) <> - 1
1093
+
1091
1094
let isInvalidDirectory ( d : string ) =
1092
1095
d= null || d.IndexOfAny( Path.GetInvalidPathChars()) <> - 1
1093
1096
1094
1097
isInvalidPath ( path) ||
1095
1098
let directory = Path.GetDirectoryName( path)
1096
1099
let filename = Path.GetFileName( path)
1097
- isInvalidDirectory( directory) || isInvalidPath ( filename)
1100
+ isInvalidDirectory( directory) || isInvalidFilename ( filename)
1098
1101
1099
1102
member __.GetTempPathShim () = System.IO.Path.GetTempPath()
1100
1103
You can’t perform that action at this time.
0 commit comments