This repository was archived by the owner on Apr 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoApp.format.ps1xml
More file actions
117 lines (116 loc) · 4.1 KB
/
CoApp.format.ps1xml
File metadata and controls
117 lines (116 loc) · 4.1 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
<ViewDefinitions>
<View>
<Name>Package</Name>
<ViewSelectedBy>
<TypeName>CoApp.Toolkit.Engine.Client.Package</TypeName>
</ViewSelectedBy>
<TableControl>
<AutoSize/>
<TableHeaders>
<TableColumnHeader>
<Label>Name</Label>
</TableColumnHeader>
<TableColumnHeader>
<Label>Version</Label>
</TableColumnHeader>
<TableColumnHeader>
<Label>Arch</Label>
</TableColumnHeader>
<TableColumnHeader>
<Label>Flags</Label>
</TableColumnHeader>
<TableColumnHeader>
<Label>Location</Label>
</TableColumnHeader>
<TableColumnHeader>
<Label>Canonical Name</Label>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<Wrap/>
<TableColumnItems>
<TableColumnItem>
<PropertyName>Name</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Version</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Architecture</PropertyName>
<Alignment>Center</Alignment>
</TableColumnItem>
<TableColumnItem>
<ScriptBlock>$FL="";if ($_.IsConflicted){$FL+="!"}else{$FL+=" "};if ($_.IsActive){$FL+="A"}else{$FL+=" "};if ($_.IsInstalled){$FL+="I"}else{$FL+=" "};if ($_.IsClientRequired){$FL+="M"}else{if ($_.Required){$FL+="R"}else{$FL+=" "}};if ($_.IsDependency){$FL+="D"}else{$FL+=" "};if ($_.IsBlocked){$FL+="B"}else{$FL+=" "};$FL;</ScriptBlock>
<Alignment>Right</Alignment>
</TableColumnItem>
<TableColumnItem>
<PropertyName>LocalPackagePath</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>CanonicalName</PropertyName>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
<View>
<Name>Feed</Name>
<ViewSelectedBy>
<TypeName>CoApp.PSClient.Feed</TypeName>
</ViewSelectedBy>
<TableControl>
<TableHeaders>
<TableColumnHeader>
<Label>Location</Label>
<Width>30</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Session</Label>
<Width>10</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Supressed</Label>
<Width>10</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>Verified</Label>
<Width>10</Width>
</TableColumnHeader>
<TableColumnHeader>
<Label>LastScanned</Label>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<Wrap/>
<TableColumnItems>
<TableColumnItem>
<PropertyName>Location</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Session</PropertyName>
<Alignment>Right</Alignment>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Supressed</PropertyName>
<Alignment>Right</Alignment>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Verified</PropertyName>
<Alignment>Right</Alignment>
</TableColumnItem>
<TableColumnItem>
<PropertyName>LastScanned</PropertyName>
<Alignment>Left</Alignment>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
</ViewDefinitions>
</Configuration>