Free cookie consent management tool by TermsFeed Policy Generator

source: misc/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/Resources.Designer.cs @ 15681

Last change on this file since 15681 was 14985, checked in by jkarder, 7 years ago

#2520: worked on persistence code fix

  • split existing analyzer and code fix
  • added analyzer and code fix for missing storable ctors
File size: 6.3 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:4.0.30319.42000
5//
6//     Changes to this file may cause incorrect behavior and will be lost if
7//     the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace PersistenceCodeFix {
12    using System;
13    using System.Reflection;
14   
15   
16    /// <summary>
17    ///   A strongly-typed resource class, for looking up localized strings, etc.
18    /// </summary>
19    // This class was auto-generated by the StronglyTypedResourceBuilder
20    // class via a tool like ResGen or Visual Studio.
21    // To add or remove a member, edit your .ResX file then rerun ResGen
22    // with the /str option, or rebuild your VS project.
23    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
24    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
25    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
26    internal class Resources {
27       
28        private static global::System.Resources.ResourceManager resourceMan;
29       
30        private static global::System.Globalization.CultureInfo resourceCulture;
31       
32        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
33        internal Resources() {
34        }
35       
36        /// <summary>
37        ///   Returns the cached ResourceManager instance used by this class.
38        /// </summary>
39        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
40        internal static global::System.Resources.ResourceManager ResourceManager {
41            get {
42                if (object.ReferenceEquals(resourceMan, null)) {
43                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PersistenceCodeFix.Resources", typeof(Resources).GetTypeInfo().Assembly);
44                    resourceMan = temp;
45                }
46                return resourceMan;
47            }
48        }
49       
50        /// <summary>
51        ///   Overrides the current thread's CurrentUICulture property for all
52        ///   resource lookups using this strongly typed resource class.
53        /// </summary>
54        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
55        internal static global::System.Globalization.CultureInfo Culture {
56            get {
57                return resourceCulture;
58            }
59            set {
60                resourceCulture = value;
61            }
62        }
63       
64        /// <summary>
65        ///   Looks up a localized string similar to All StorableTypes should have a storable constructor.
66        /// </summary>
67        internal static string MissingStorableConstructorAnalyzerDescription {
68            get {
69                return ResourceManager.GetString("MissingStorableConstructorAnalyzerDescription", resourceCulture);
70            }
71        }
72       
73        /// <summary>
74        ///   Looks up a localized string similar to Type &apos;{0}&apos; has no storable constructor.
75        /// </summary>
76        internal static string MissingStorableConstructorAnalyzerMessageFormat {
77            get {
78                return ResourceManager.GetString("MissingStorableConstructorAnalyzerMessageFormat", resourceCulture);
79            }
80        }
81       
82        /// <summary>
83        ///   Looks up a localized string similar to Missing storable constructor.
84        /// </summary>
85        internal static string MissingStorableConstructorAnalyzerTitle {
86            get {
87                return ResourceManager.GetString("MissingStorableConstructorAnalyzerTitle", resourceCulture);
88            }
89        }
90       
91        /// <summary>
92        ///   Looks up a localized string similar to All types should be marked with a StorableType attribute.
93        /// </summary>
94        internal static string MissingStorableTypeAnalyzerDescription {
95            get {
96                return ResourceManager.GetString("MissingStorableTypeAnalyzerDescription", resourceCulture);
97            }
98        }
99       
100        /// <summary>
101        ///   Looks up a localized string similar to Type &apos;{0}&apos; is not marked as StorableType.
102        /// </summary>
103        internal static string MissingStorableTypeAnalyzerMessageFormat {
104            get {
105                return ResourceManager.GetString("MissingStorableTypeAnalyzerMessageFormat", resourceCulture);
106            }
107        }
108       
109        /// <summary>
110        ///   Looks up a localized string similar to Missing StorableType attribute.
111        /// </summary>
112        internal static string MissingStorableTypeAnalyzerTitle {
113            get {
114                return ResourceManager.GetString("MissingStorableTypeAnalyzerTitle", resourceCulture);
115            }
116        }
117       
118        /// <summary>
119        ///   Looks up a localized string similar to The StorableClass attribute is obsolete; Use the StorableType attribute instead.
120        /// </summary>
121        internal static string ObsoleteStorableClassAnalyzerDescription {
122            get {
123                return ResourceManager.GetString("ObsoleteStorableClassAnalyzerDescription", resourceCulture);
124            }
125        }
126       
127        /// <summary>
128        ///   Looks up a localized string similar to Type &apos;{0}&apos; should be marked as StorableType instead of StorableClass.
129        /// </summary>
130        internal static string ObsoleteStorableClassAnalyzerMessageFormat {
131            get {
132                return ResourceManager.GetString("ObsoleteStorableClassAnalyzerMessageFormat", resourceCulture);
133            }
134        }
135       
136        /// <summary>
137        ///   Looks up a localized string similar to Obsolete StorableClass attribute.
138        /// </summary>
139        internal static string ObsoleteStorableClassAnalyzerTitle {
140            get {
141                return ResourceManager.GetString("ObsoleteStorableClassAnalyzerTitle", resourceCulture);
142            }
143        }
144    }
145}
Note: See TracBrowser for help on using the repository browser.