We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7484456 commit d3d4e4aCopy full SHA for d3d4e4a
1 file changed
ReactiveXComponent/XComponentApi.cs
@@ -27,7 +27,7 @@ public static IXComponentApi CreateFromXCApi(string xcApiFilePath, string privat
27
throw new ReactiveXComponentException($"The file {xcApiFilePath} doesn't exist");
28
}
29
30
- using (var stream = new FileStream(xcApiFilePath, FileMode.Open))
+ using (var stream = new FileStream(xcApiFilePath, FileMode.Open, FileAccess.Read, FileShare.Read))
31
{
32
return CreateFromXCApi(stream, privateCommunicationIdentifier);
33
0 commit comments