You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// This class contains all RT's error and siagnostic messages.
11
+
/// Why didnt I use resources? I dont want to add one more .dll to RT's NuGet package.
12
+
/// if localization will be required through issues then I will add one
13
+
/// </summary>
14
+
classErrorMessages
15
+
{
16
+
#region Errors
17
+
/// <summary>
18
+
/// Could not acuire temorary file {0}: {1}
19
+
/// </summary>
20
+
publicstaticreadonlyErrorMessageRTE0001_TempFileError=newErrorMessage(0001,"Could not acuire temorary file {0}: {1}","IO");
21
+
22
+
/// <summary>
23
+
/// Could not replace source file {0}: {1}
24
+
/// </summary>
25
+
publicstaticreadonlyErrorMessageRTE0002_DeployingFilesError=newErrorMessage(0002,"Could not replace source file {0}: {1}","IO");
26
+
27
+
/// <summary>
28
+
/// Could not instantiate code generator {0}: {1}
29
+
/// </summary>
30
+
publicstaticreadonlyErrorMessageRTE0003_GeneratorInstantiate=newErrorMessage(0003,"Could not instantiate code generator {0}: {1}","Code generation");
31
+
32
+
/// <summary>
33
+
/// Code generator {0} has thrown an error: {1}
34
+
/// </summary>
35
+
publicstaticreadonlyErrorMessageRTE0004_GeneratorError=newErrorMessage(0004,"Code generator {0} has thrown an error: {1}","Code generation");
36
+
37
+
/// <summary>
38
+
/// Could not resolve type for {0}. An error occured: {1}
39
+
/// </summary>
40
+
publicstaticreadonlyErrorMessageRTE0005_TypeResolvationError=newErrorMessage(0005,"Could not resolve type for {0}. An error occured: {1}","Type resolvation");
41
+
42
+
/// <summary>
43
+
/// Exception thrown when applying fluent configuration method for {1} '{2}': {0}
44
+
/// </summary>
45
+
publicstaticreadonlyErrorMessageRTE0006_FluentSingleError=newErrorMessage(0006,"Exception thrown when applying fluent configuration method for {1} '{2}': {0}","Fluent configuration");
46
+
47
+
/// <summary>
48
+
/// Exception thrown when applying fluent configuration method for collection of {1}: {0}
49
+
/// </summary>
50
+
publicstaticreadonlyErrorMessageRTE0007_FluentBatchError=newErrorMessage(0007,"Exception thrown when applying fluent configuration method for collection of {1}: {0}","Fluent configuration");
51
+
52
+
/// <summary>
53
+
/// MethodCallExpression should be provided for .WithMethod call. Please use only lamba expressions in this place.
54
+
/// </summary>
55
+
publicstaticreadonlyErrorMessageRTE0008_FluentWithMethodError=newErrorMessage(0008,"MethodCallExpression should be provided for .WithMethod call. Please use only lamba expressions in this place.","Fluent configuration");
56
+
57
+
58
+
/// <summary>
59
+
/// Sorry, but {0} is not very good idea for parameter configuration. Try using simplier lambda expression.
60
+
/// </summary>
61
+
publicstaticreadonlyErrorMessageRTE0009_FluentWithMethodCouldNotParse=newErrorMessage(0009,"Sorry, but {0} is not very good idea for parameter configuration. Try using simplier lambda expression.","Fluent configuration");
62
+
63
+
/// <summary>
64
+
/// Property lambda expression expected in {0}
65
+
/// </summary>
66
+
publicstaticreadonlyErrorMessageRTE0010_PropertyLambdaExpected=newErrorMessage(0010,"Property lambda expression expected in {0}","Fluent configuration");
67
+
68
+
/// <summary>
69
+
/// Field lambda expression expected in {0}
70
+
/// </summary>
71
+
publicstaticreadonlyErrorMessageRTE0011_FieldLambdaExpected=newErrorMessage(0011,"Field lambda expression expected in {0}","Fluent configuration");
72
+
73
+
/// <summary>
74
+
/// NewExpression should be provided for .WithConstructor call. Please use only lamba expressions in this place.
75
+
/// </summary>
76
+
publicstaticreadonlyErrorMessageRTE0012_NewExpressionLambdaExpected=newErrorMessage(0012,"NewExpression should be provided for .WithConstructor call. Please use only 'new ...' lamba expressions in this place.","Fluent configuration");
77
+
#endregion
78
+
79
+
#region Warnings
80
+
/// <summary>
81
+
/// XMLDOC file not supplied
82
+
/// </summary>
83
+
publicstaticreadonlyErrorMessageRTW0001_DocumentationNotSupplied=newErrorMessage(0001,"XMLDOC file not supplied","JSDOC");
84
+
85
+
/// <summary>
86
+
/// Could not find XMLDOC file {0}
87
+
/// </summary>
88
+
publicstaticreadonlyErrorMessageRTW0002_DocumentationNotFound=newErrorMessage(0002,"Could not find XMLDOC file {0}","JSDOC");
89
+
90
+
/// <summary>
91
+
/// Could not find suitable TypeScript type for {0}. 'any' assumed.
92
+
/// </summary>
93
+
publicstaticreadonlyErrorMessageRTW0003_TypeUnknown=newErrorMessage(0003,"Could not find suitable TypeScript type for {0}. 'any' assumed.","Type resolvation");
94
+
95
+
/// <summary>
96
+
/// No suitable base constructor found for {0}. Generating 'super' call with all nulls.
97
+
/// </summary>
98
+
publicstaticreadonlyErrorMessageRTW0004_DefaultSuperCall=newErrorMessage(0004,"No suitable base constructor found for {0}. Generating 'super' call with all nulls.","Class code generation");
99
+
100
+
/// <summary>
101
+
/// Class {0} (base for {1}) is exported as interface. It is potentially unsafe facility.
102
+
/// </summary>
103
+
publicstaticreadonlyErrorMessageRTW0005_BaseClassExportingAsInterface=newErrorMessage(0005,"Class {0} (base for {1}) is exported as interface. It is potentially unsafe facility.","Class code generation");
0 commit comments