-
Notifications
You must be signed in to change notification settings - Fork 391
/
Copy pathReferencesPage.VisualBasic.xaml
42 lines (38 loc) · 1.78 KB
/
ReferencesPage.VisualBasic.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE.md file in the project root for more information. -->
<Rule Name="References"
Description="Specifies the project's references and namespace imports."
DisplayName="References"
PageTemplate="generic"
Order="100"
xmlns="http://schemas.microsoft.com/build/2009/properties">
<Rule.Categories>
<Category Name="General"
DisplayName="General"
Description="References and namespace settings for VB projects." />
</Rule.Categories>
<Rule.DataSource>
<DataSource Persistence="ProjectFile"
SourceOfDefaultValue="AfterContext"
HasConfigurationCondition="False" />
</Rule.DataSource>
<DynamicEnumProperty Name="ImportedNamespaces"
DisplayName="Import Namespaces"
Description="Manage which namespaces to import in your application."
Category="General"
EnumProvider="DotNetImportsEnumProvider">
<DynamicEnumProperty.DataSource>
<DataSource PersistedName="ImportedNamespaces"
Persistence="ProjectFileWithInterception"
HasConfigurationCondition="False" />
</DynamicEnumProperty.DataSource>
<DynamicEnumProperty.ValueEditors>
<ValueEditor EditorType="MultiStringSelector">
<ValueEditor.Metadata>
<NameValuePair Name="TypeDescriptorText" Value="Imported Namespaces" />
<NameValuePair Name="AllowsCustomStrings" Value="True" />
</ValueEditor.Metadata>
</ValueEditor>
</DynamicEnumProperty.ValueEditors>
</DynamicEnumProperty>
</Rule>