Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.VisualStudio.Web.CodeGeneration.Core</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Extensions.CommandLineUtils.ArgumentEscaper">
            <summary>
            A utility for escaping arguments for new processes.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.CommandLineUtils.ArgumentEscaper.EscapeAndConcatenate(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Undo the processing which took place to create string[] args in Main, so that the next process will
            receive the same string[] args.
            </summary>
            <remarks>
            See https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/
            </remarks>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Extensions.CommandLineUtils.DotNetMuxer">
            <summary>
            Utilities for finding the "dotnet.exe" file from the currently running .NET Core application
            </summary>
        </member>
        <member name="P:Microsoft.Extensions.CommandLineUtils.DotNetMuxer.MuxerPath">
            <summary>
            The full filepath to the .NET Core muxer.
            </summary>
        </member>
        <member name="M:Microsoft.Extensions.CommandLineUtils.DotNetMuxer.MuxerPathOrDefault">
            <summary>
            Finds the full filepath to the .NET Core muxer,
            or returns a string containing the default name of the .NET Core muxer ('dotnet').
            </summary>
            <returns>The path or a string named 'dotnet'.</returns>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.AliasAttribute">
            <summary>
            Specifies a command line alias for a code generator.
            </summary>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.ArgumentAttribute">
            <summary>
            Indicates a command line argument.
            Arguments are passed as positional parameters from the command line.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.ArgumentAttribute.Description">
            <summary>
            Help string shown for the argument.
            </summary>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.OptionAttribute">
            <summary>
            Indicates a command line option.
            Options are passed as named parameters from the command line.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.OptionAttribute.Name">
            <summary>
            Name of the option. Usually passed with the prefix --.
            If the Name is not set, name of the property on which the attribute
            is declared is assumed.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.OptionAttribute.ShortName">
            <summary>
            ShortName for convenience. Usually passed with the prefix -.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.OptionAttribute.Description">
            <summary>
            Help string shown for the option.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.CommandLine.OptionAttribute.DefaultValue">
            <summary>
            An optional default value to set if user did not pass a value
            for this option.
            </summary>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.DefaultFileSystem">
            <summary>
            Default implementation of <see cref="T:Microsoft.VisualStudio.Web.CodeGeneration.IFileSystem"/>
            using the real file sytem.
            </summary>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.ICodeGenerator">
            <summary>
            Marker interface to indicate that this class is a code generator.
            </summary>
        </member>
        <member name="M:Microsoft.VisualStudio.Web.CodeGeneration.IFilesLocator.GetFilePath(System.String,System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Returns the first file found within the given search paths.
            </summary>
            <remarks>
            A recursive search is done within each search path 
            and the file matching file with the fileName is returned.
            If multiple files with the same name are found in a given search path,
            an exception is thrown.
            </remarks>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.IFileSystem">
            <summary>
            An abstraction over common file/disk utilities.
            Intended for mocking the disk operations in unit tests
            by providing an alternate mock implemention.
            </summary>
        </member>
        <member name="M:Microsoft.VisualStudio.Web.CodeGeneration.IModelTypesLocator.GetType(System.String)">
            <summary>
            Returns the types matching a type name.
            The method returns types for which the
            full name matches the given typeName exactly.
            However, if there are none exactly matching, then
            it returns all the types whose type name (without the namespace name)
            matches the given type name. This allows the callers
            to pass in a short type name and get the results.
            Caller has to decide what to do when there are multiple matches.
            </summary>
            <param name="typeName"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.AddDependency">
            <summary>
              Looks up a localized string similar to Adding dependency &apos;{0}&apos; version &apos;{1}&apos;..
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.CodeGeneratorInstanceCreationError">
            <summary>
              Looks up a localized string similar to There was an error creating the code generator instance: {0}\r\n{1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.CodeGeneratorNotFound">
            <summary>
              Looks up a localized string similar to No code generators found with the name &apos;{0}&apos;.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.DirectoryNotEmpty">
            <summary>
              Looks up a localized string similar to The directory is not empty : &apos;{0}&apos;.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.DnuNotFound">
            <summary>
              Looks up a localized string similar to Could not find dotnet.exe on path. .
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.DotNetRestoreError">
            <summary>
              Looks up a localized string similar to There was an error running &apos;dotnet restore&apos; : &apos;{0}&apos;.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.FileNotFound">
            <summary>
              Looks up a localized string similar to The provided file &apos;{0}&apos; does not exist. This method expects a fully qualified path of an existing file..
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.FileNotFoundInFolders">
            <summary>
              Looks up a localized string similar to A file matching the name {0} was not found within any of the folders: {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.MethodNotFound">
            <summary>
              Looks up a localized string similar to {0} method with a model parameter is not found in class: {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.ModelCreationFailed">
            <summary>
              Looks up a localized string similar to There was an error attempting to create an instace of model for GenerateCode method: {0}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.MultipleCodeGeneratorsFound">
            <summary>
              Looks up a localized string similar to Multiple code generators found matching the name &apos;{0}&apos;.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.MultipleFilesFound">
            <summary>
              Looks up a localized string similar to Multiple files with name {0} found within {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.MultipleMethodsFound">
            <summary>
              Looks up a localized string similar to Multiple {0} methods with a model parameter are found in class: {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.NullParamError">
            <summary>
              Looks up a localized string similar to Parameter &apos;{0}&apos; cannot be null or empty..
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.PathNotFound">
            <summary>
              Looks up a localized string similar to Could not find a part of the path &apos;{0}&apos;.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.TemplateFileNotFound">
            <summary>
              Looks up a localized string similar to Template file {0} not found within search paths {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.TemplateProcessingError">
            <summary>
              Looks up a localized string similar to There was an error running the template {0}: {1}.
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.UnableToRunRestore">
            <summary>
              Looks up a localized string similar to Unable to run restore..
            </summary>
        </member>
        <member name="P:Microsoft.VisualStudio.Web.CodeGeneration.Core.MessageStrings.UnexpectedTypeLibraryForTemplates">
            <summary>
              Looks up a localized string similar to Unexpected type of library information for template folders.
            </summary>
        </member>
        <member name="T:Microsoft.VisualStudio.Web.CodeGeneration.SimulationModeFileSystem">
            <summary>
            Implementation of <see cref="T:Microsoft.VisualStudio.Web.CodeGeneration.IFileSystem"/>
            Records all the changes requested for the fileSystem,
            without persisting the changes on disk.
            </summary>
        </member>
    </members>
</doc>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/packages/Microsoft.VisualStudio.Web.CodeGeneration.Core.2.1.0/lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000