We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9909233 commit d149d4dCopy full SHA for d149d4d
1 file changed
src/winapp-CLI/WinApp.Cli/Services/ProjectDetectionService.cs
@@ -184,6 +184,10 @@ private static bool IsElectronProject(DirectoryInfo directory)
184
{
185
return false;
186
}
187
+ catch (UnauthorizedAccessException)
188
+ {
189
+ return false;
190
+ }
191
192
193
private static bool HasElectronDependency(JsonElement root, string propertyName)
0 commit comments