This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSlnx.xml
586 lines (586 loc) · 26.1 KB
/
Slnx.xml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
<?xml version="1.0"?>
<doc>
<assembly>
<name>Slnx</name>
</assembly>
<members>
<member name="T:Slnx.DescendantConfiguration">
<summary>
Represents a "<Configuration>" like tag.
</summary>
</member>
<member name="P:Slnx.DescendantConfiguration.Solution">
<summary>
Solution where this configuration applies to.
</summary>
</member>
<member name="P:Slnx.DescendantConfiguration.Project">
<summary>
Project where this configuration applies to.
</summary>
</member>
<member name="M:Slnx.DescendantConfiguration.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.DescendantConfiguration" /> class.
</summary>
<param name="solution">Solution where this configuration applies to.</param>
<param name="project">Project where this configuration applies to.</param>
</member>
<member name="T:Slnx.Folder">
<summary>
Represents a folder in the same level as the solution.
</summary>
</member>
<member name="P:Slnx.Folder.Empty">
<summary>
Gets an instance of <see cref="T:Slnx.Folder" /> with no content and name "(Folder Name)".
</summary>
</member>
<member name="P:Slnx.Folder.Name">
<summary>
Name of the folder.
</summary>
</member>
<member name="P:Slnx.Folder.DescendantProjects">
<summary>
Nested projects in the folder. If this is <see langword="NULL"/>, then there
are no descendant projects.
</summary>
</member>
<member name="P:Slnx.Folder.DescendantFolders">
<summary>
Nested folders in the folder. If this is <see langword="NULL"/>, then there
are no descendant folders.
</summary>
</member>
<member name="P:Slnx.Folder.DescendantFiles">
<summary>
Files in the folder. If this is <see langword="NULL"/>, then there
are no descendant files.
</summary>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Project[],Slnx.Folder[],System.String[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder" /> class.
</summary>
<param name="name">Folder name.</param>
<param name="projects">All projects.</param>
<param name="folders">All folders.</param>
<param name="files">All files.</param>
</member>
<member name="M:Slnx.Folder.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<remarks>
Properties <see cref="P:Slnx.Folder.DescendantProjects"/>, <see cref="P:Slnx.Folder.DescendantFiles"/>,
and <see cref="P:Slnx.Folder.DescendantFolders"/> will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Project[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="projects">All projects.</param>
<remarks>
Properties <see cref="P:Slnx.Folder.DescendantFiles"/> and <see cref="P:Slnx.Folder.DescendantFolders"/>
will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Folder[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="folders">All folders.</param>
<remarks>
Properties <see cref="P:Slnx.Folder.DescendantFiles"/> and <see cref="P:Slnx.Folder.DescendantProjects"/>
will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,System.String[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="files">All files.</param>
<remarks>
Properties <see cref="P:Slnx.Folder.DescendantProjects"/> and <see cref="P:Slnx.Folder.DescendantFolders"/>
will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Folder[],System.String[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="folders">All folders.</param>
<param name="files">All files.</param>
<remarks>
Property <see cref="P:Slnx.Folder.DescendantProjects"/> will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Folder[],Slnx.Project[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="folders">All folders.</param>
<param name="projects">All projects.</param>
<remarks>
Property <see cref="P:Slnx.Folder.DescendantFiles"/> will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Project[],System.String[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="project">All projects.</param>
<param name="files">All files.</param>
<remarks>
Property <see cref="P:Slnx.Folder.DescendantFolders"/> will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.#ctor(System.String,Slnx.Project[],Slnx.Folder[])">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Folder"/> class.
</summary>
<param name="name">The name of the folder.</param>
<param name="project">All projects.</param>
<param name="folders">All folders.</param>
<remarks>
Property <see cref="P:Slnx.Folder.DescendantFiles"/> will be <see langword="null"/>.
</remarks>
</member>
<member name="M:Slnx.Folder.AddProjects(Slnx.Project[])">
<summary>
Adds a given array of projects to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="projects">An array of projects to add.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given projects.</returns>
</member>
<member name="M:Slnx.Folder.AddProject(Slnx.Project)">
<summary>
Adds a single project to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="project">A project that will be added.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given project.</returns>
</member>
<member name="M:Slnx.Folder.AddFiles(System.String[])">
<summary>
Adds a given array of files to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="files">An array of files to add.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given files.</returns>
</member>
<member name="M:Slnx.Folder.AddFile(System.String)">
<summary>
Adds a single file to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="file">A file that will be added.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given file.</returns>
</member>
<member name="M:Slnx.Folder.AddFolders(Slnx.Folder[])">
<summary>
Adds a given array of folders to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="folders">An array of folders to add.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given folder.</returns>
</member>
<member name="M:Slnx.Folder.AddFolder(Slnx.Folder)">
<summary>
Adds a single folder to this instance of <see cref="T:Slnx.Folder"/>.
</summary>
<param name="folder">A folder that will be added.</param>
<returns>Current instance of <see cref="T:Slnx.Folder"/> after adding the given folder.</returns>
</member>
<member name="M:Slnx.Folder.AddProjectWithPathOnly(System.String)">
<summary>
Adds a new project without any configuration to this instance of <see cref="T:Slnx.Folder"/>
</summary>
<param name="path">The path to the project.</param>
<returns>
A tuple that contains two elements:
<list type="bullet">
<item>
<em>Item 1</em> (<see cref="T:Slnx.Folder"/>): Current instance of
<see cref="T:Slnx.Folder"/> after adding the project.
</item>
<item>
<em>Item 2</em> (<see cref="T:Slnx.Project"/>): The project that was added.
</item>
</list>
</returns>
</member>
<member name="T:Slnx.Project">
<summary>
Represents a single project found in the SLNX file.
</summary>
</member>
<member name="P:Slnx.Project.Exists">
<summary>
Checks if the project file exists.
</summary>
</member>
<member name="P:Slnx.Project.Path">
<summary>
Path to the project file.
</summary>
</member>
<member name="P:Slnx.Project.Type">
<summary>
Type of the project.
</summary>
</member>
<member name="P:Slnx.Project.Extension">
<summary>
Extension of the project file. If the extension isn't present, the
value is null.
</summary>
</member>
<member name="P:Slnx.Project.HasExtension">
<summary>
Checks if the <see cref="P:Slnx.Project.Extension" /> property has an extension.
</summary>
</member>
<member name="P:Slnx.Project.ProjectType">
<summary>
Gets the type of the project. This can be a string (for example, a string "Classic C#"),
or a GUID.
</summary>
</member>
<member name="P:Slnx.Project.Configuration">
<summary>
Descendant configuration.
</summary>
</member>
<member name="M:Slnx.Project.#ctor(System.String,System.String,Slnx.DescendantConfiguration)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Project" /> class.
</summary>
<param name="path">Path to the project file.</param>
<param name="type">The project type.</param>
<param name="config">The configuration.</param>
</member>
<member name="M:Slnx.Project.WithConfiguration(Slnx.DescendantConfiguration)">
<summary>
Changes the descendant configuration of this project to <paramref name="configuration"/> and returns it.
</summary>
<param name="configuration">The descendant project configuration.</param>
<returns>Current instance of <see cref="T:Slnx.Project"/> with the given configuration.</returns>
</member>
<member name="T:Slnx.ProjectType">
<summary>
Represents the type of a project file.
</summary>
</member>
<member name="F:Slnx.ProjectType.CSharp">
<summary>
C# Project (*.csproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.VC">
<summary>
Visual C++ Project (*.vcxproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.VisualBasic">
<summary>
VB.NET Project (*.vbproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.FSharp">
<summary>
F# Project (*.fsproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Installer">
<summary>
Microsoft Installer Project (*.vdproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Shared">
<summary>
Shared Project (*.shproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Database">
<summary>
Database Project (*.dbproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.DockerCompose">
<summary>
Docker Compose Project (*.dcproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Sql">
<summary>
SQL Project (*.sqlproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.JavaScript">
<summary>
JavaScript Application/ECMAScript Project (*.esproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.NetCore2015">
<summary>
.NET Core 2015 Project (*.xproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Common">
<summary>
Common MSBuild Project (*.msbuildproj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Project">
<summary>
Project (*.proj)
</summary>
</member>
<member name="F:Slnx.ProjectType.Unknown">
<summary>
Any project type which is not defined.
</summary>
</member>
<member name="T:Slnx.ProjectTypeExtensions">
<summary>
Extension methods for <see cref="T:Slnx.ProjectType" />.
</summary>
</member>
<member name="M:Slnx.ProjectTypeExtensions.GetExtension(Slnx.ProjectType)">
<summary>
Returns the extension for the project type.
</summary>
<param name="projectType">Type of the project.</param>
<returns>A file extension for that project type, excluding the period.</returns>
</member>
<member name="M:Slnx.ProjectTypeExtensions.FromExtension(System.String)">
<summary>
Returns the project type for the project extension.
</summary>
<param name="extension">Extension of the project, excluding the period.</param>
<returns>A type of the project from the extension.</returns>
</member>
<member name="T:Slnx.Property">
<summary>
Represents a <Property> element.
</summary>
</member>
<member name="P:Slnx.Property.Name">
<summary>
Name of the property.
</summary>
</member>
<member name="P:Slnx.Property.Value">
<summary>
Property value.
</summary>
</member>
<member name="M:Slnx.Property.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.Property"/> class.
</summary>
<param name="name">Name of the property.</param>
<param name="value">Property value.</param>
</member>
<member name="P:Slnx.Property.IsMSBuildSharedItemsImports">
<summary>
Checks if the name of the property signifies an MSBuild Shared Items import.
</summary>
<remarks>
Example:
<code>
Path\To\ProjItems\File.projitems*{AnyGuidHere}*SharedItemsImports
</code>
</remarks>
</member>
<member name="T:Slnx.PropertyCollection">
<summary>
Represents the <Properties> element.
</summary>
</member>
<member name="P:Slnx.PropertyCollection.Name">
<summary>
Name of the property collection (if present). Example: <c>SharedMSBuildProjectFiles</c>.
</summary>
</member>
<member name="P:Slnx.PropertyCollection.Scope">
<summary>
Scope of the property collection (if present). Example: <c>PreLoad</c>.
</summary>
</member>
<member name="P:Slnx.PropertyCollection.Properties">
<summary>
All descendant properties.
</summary>
</member>
<member name="M:Slnx.PropertyCollection.#ctor(System.String,System.String,System.Collections.Generic.List{Slnx.Property})">
<summary>
Initializes a new instance of the <see cref="T:Slnx.PropertyCollection"/>.
</summary>
<param name="name">Name of the property collection (if present).</param>
<param name="scope">Scope of the property collection (if present).</param>
<param name="properties">All descendant properties.</param>
</member>
<member name="T:Slnx.SlnxFactory">
<summary>
Builds an SLNX file.
</summary>
</member>
<member name="P:Slnx.SlnxFactory.Folders">
<summary>
All folders.
</summary>
</member>
<member name="P:Slnx.SlnxFactory.Projects">
<summary>
All projects.
</summary>
</member>
<member name="P:Slnx.SlnxFactory.Properties">
<summary>
All <Properties> elements.
</summary>
</member>
<member name="M:Slnx.SlnxFactory.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Slnx.SlnxFactory" /> class.
</summary>
</member>
<member name="M:Slnx.SlnxFactory.AsModel">
<summary>
Converts this instance of <see cref="T:Slnx.SlnxFactory" /> into <see cref="T:Slnx.SlnxModel" />.
</summary>
<returns>An instance of <see cref="T:Slnx.SlnxModel" />.</returns>
</member>
<member name="M:Slnx.SlnxFactory.AddFolder(Slnx.Folder)">
<summary>
Adds a new folder to the SLNX file.
</summary>
<param name="folder">The folder to add.</param>
<returns>Current instance of <see cref="T:Slnx.SlnxFactory"/> after adding a folder.</returns>
<remarks>
This will also return a copy of the current instance, which could introduce additional
memory allocation.
</remarks>
</member>
<member name="M:Slnx.SlnxFactory.AddProjectWithPathOnly(System.String)">
<summary>
Adds a new project to the SLNX file.
</summary>
<param name="path">The project to add.</param>
<returns>Current instance of <see cref="T:Slnx.SlnxFactory"/> after adding a project.</returns>
<remarks>
This will also return a copy of the current instance, which could introduce additional
memory allocation.
</remarks>
</member>
<member name="T:Slnx.SlnxModel">
<summary>
Represents information about an SLNX file.
</summary>
</member>
<member name="F:Slnx.SlnxModel.DefaultXmlSettings">
<summary>
If you pass <see langword="null"/> to <see cref="M:Slnx.SlnxModel.Store(System.Xml.XmlWriterSettings)"/>, this is
the <see cref="T:System.Xml.XmlWriterSettings"/> instance that <see cref="N:Slnx"/> will use.
</summary>
</member>
<member name="P:Slnx.SlnxModel.TopLevelProjects">
<summary>
Gets all projects in the same level as the SLNX.
</summary>
</member>
<member name="P:Slnx.SlnxModel.TopLevelFolders">
<summary>
Gets all folders in the same level as the SLNX.
</summary>
</member>
<member name="P:Slnx.SlnxModel.PropertyCollections">
<summary>
Gets all property collections in the same level as the SLNX. These can only appear
in the same level as the SLNX - they cannot appear inside folder or project elements.
</summary>
</member>
<member name="M:Slnx.SlnxModel.#ctor(System.Collections.Generic.List{Slnx.Project},System.Collections.Generic.List{Slnx.Folder},System.Collections.Generic.List{Slnx.PropertyCollection})">
<summary>
Initializes a new instance of the <see cref="T:Slnx.SlnxModel" /> class.
</summary>
<param name="projects">A list of projects.</param>
<param name="folders">A list of folders.</param>
<param name="propertyCollections">A list of property collections.</param>
</member>
<member name="M:Slnx.SlnxModel.Load(System.String)">
<summary>
Loads and parses a SLNX file.
</summary>
<param name="slnxContent">The string contents of the SLNX file. Use <see cref="M:System.IO.File.ReadAllText(System.String)" />.</param>
<returns>Information about that SLNX file.</returns>
</member>
<member name="M:Slnx.SlnxModel.Store(System.String,System.Xml.XmlWriterSettings)">
<summary>
Stores the data of this instance of <see cref="T:Slnx.SlnxModel" /> into a SLNX file.
</summary>
<param name="outputFile">
Output file. Can be anything but it is recommended for the
extension to end with .slnx.
</param>
<param name="settings">Settings for the style of the output XML. If the value is <see langword="null" />, default parameters are used.</param>
<remarks>
The output file will be attempted to be deleted if it exists.
</remarks>
</member>
<member name="M:Slnx.SlnxModel.Store(System.Xml.XmlWriterSettings)">
<summary>
Converts this instance of <see cref="T:Slnx.SlnxModel"/> to the string representation
of the SLNX file with same projects and folders.
</summary>
<param name="xmlWriterSettings">Settings for the style of the output XML. If the value is <see langword="null" />, default parameters are used.</param>
<returns>A string that represents the SLNX file with projects, folders, and other metadata from this instance of <see cref="T:Slnx.SlnxModel"/>.</returns>
</member>
<member name="M:Slnx.SlnxModel.StoreAsync(System.String,System.Xml.XmlWriterSettings)">
<summary>
Stores the data of this instance of <see cref="T:Slnx.SlnxModel" /> into a SLNX file.
</summary>
<param name="outputFile">
Output file. Can be anything but it is recommended for the
extension to end with .slnx.
</param>
<param name="settings">Settings for the style of the output XML. If the value is <see langword="null" />, default parameters are used.</param>
<remarks>
The output file will be attempted to be deleted if it exists.
</remarks>
</member>
<member name="M:Slnx.SlnxModel.StoreAsync(System.Xml.XmlWriterSettings)">
<summary>
Converts this instance of <see cref="T:Slnx.SlnxModel"/> to the string representation
of the SLNX file with same projects and folders.
</summary>
<param name="xmlWriterSettings">Settings for the style of the output XML. If the value is <see langword="null" />, default parameters are used.</param>
<returns>A string that represents the SLNX file with projects, folders, and other metadata from this instance of <see cref="T:Slnx.SlnxModel"/>.</returns>
</member>
<member name="T:Slnx.SolutionException">
<summary>
Represents an error related to SLNX syntax or its infrastructure.
</summary>
</member>
<member name="M:Slnx.SolutionException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.SolutionException" /> class.
</summary>
<param name="message">Exception message.</param>
</member>
<member name="M:Slnx.SolutionException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:Slnx.SolutionException" /> class.
</summary>
<param name="message">Exception message.</param>
<param name="innerException">An inner exception.</param>
</member>
</members>
</doc>