Skip to content

Commit 487bfb5

Browse files
authored
Merge pull request #10 from Therena/9_New_exception_is_thrown_in_latest_Visual_Studio_2019_in_case_trying_to_get_properties_of_XAML_file
Handle the exception thrown while iterate the properties of an XAML f…
2 parents 48298f5 + acdcff1 commit 487bfb5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

OpenFolderExtension/VisualStudio/ProjectSettings.cs

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ private static Dictionary<string, object> GetAllProperty(Properties properties)
5252
propertyList.Add(item.Name, item.Value);
5353
}
5454
catch (COMException) { }
55+
catch (NotSupportedException) { }
5556
catch (NotImplementedException) { }
5657
catch (TargetParameterCountException) { }
5758
}

OpenFolderExtension/source.extension.vsixmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ limitations under the License.
1616
-->
1717
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
1818
<Metadata>
19-
<Identity Id="1BDE1A29-4E0F-443C-A504-C44F89D70D98" Version="1.2019.0.7" Language="en-US" Publisher="David Roller" />
19+
<Identity Id="1BDE1A29-4E0F-443C-A504-C44F89D70D98" Version="1.2019.0.8" Language="en-US" Publisher="David Roller" />
2020
<DisplayName>Open Folder Extension 2019</DisplayName>
2121
<Description xml:space="preserve">Open folder feature for all items within the solution explorer.</Description>
2222
<License>Resources\LICENSE</License>

0 commit comments

Comments
 (0)