Changeset 14985
- Timestamp:
- 05/16/17 09:26:56 (8 years ago)
- Location:
- trunk/tools/PersistenceCodeFix/PersistenceCodeFix
- Files:
-
- 11 added
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix.csproj
r14933 r14985 35 35 </PropertyGroup> 36 36 <ItemGroup> 37 <Compile Include="CodeFixProvider.cs" /> 38 <Compile Include="DiagnosticAnalyzer.cs" /> 37 <Compile Include="Analyzers\DiagnosticIds.cs" /> 38 <Compile Include="Analyzers\MissingStorableConstructor\MissingStorableConstructorAnalyzer.cs" /> 39 <Compile Include="Analyzers\MissingStorableConstructor\MissingStorableConstructorFix.cs" /> 40 <Compile Include="Analyzers\ObsoleteStorableClass\ObsoleteStorableClassAnalyzer.cs" /> 41 <Compile Include="Analyzers\ObsoleteStorableClass\ObsoleteStorableClassFix.cs" /> 42 <Compile Include="Analyzers\MissingStorableType\MissingStorableTypeAnalyzer.cs" /> 43 <Compile Include="Analyzers\MissingStorableType\MissingStorableTypeFix.cs" /> 39 44 <Compile Include="Properties\AssemblyInfo.cs" /> 40 45 <Compile Include="Resources.Designer.cs"> -
trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/Resources.Designer.cs
r14933 r14985 63 63 64 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 '{0}' 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> 65 92 /// Looks up a localized string similar to All types should be marked with a StorableType attribute. 66 93 /// </summary> … … 81 108 82 109 /// <summary> 83 /// Looks up a localized string similar to Missing StorableType Attribute.110 /// Looks up a localized string similar to Missing StorableType attribute. 84 111 /// </summary> 85 112 internal static string MissingStorableTypeAnalyzerTitle { … … 88 115 } 89 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 '{0}' 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 } 90 144 } 91 145 } -
trunk/tools/PersistenceCodeFix/PersistenceCodeFix/PersistenceCodeFix/Resources.resx
r14933 r14985 118 118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 119 119 </resheader> 120 <data name="MissingStorableConstructorAnalyzerDescription" xml:space="preserve"> 121 <value>All StorableTypes should have a storable constructor</value> 122 </data> 123 <data name="MissingStorableConstructorAnalyzerMessageFormat" xml:space="preserve"> 124 <value>Type '{0}' has no storable constructor</value> 125 </data> 126 <data name="MissingStorableConstructorAnalyzerTitle" xml:space="preserve"> 127 <value>Missing storable constructor</value> 128 </data> 120 129 <data name="MissingStorableTypeAnalyzerDescription" xml:space="preserve"> 121 130 <value>All types should be marked with a StorableType attribute</value> … … 125 134 </data> 126 135 <data name="MissingStorableTypeAnalyzerTitle" xml:space="preserve"> 127 <value>Missing StorableTypeAttribute</value> 136 <value>Missing StorableType attribute</value> 137 </data> 138 <data name="ObsoleteStorableClassAnalyzerDescription" xml:space="preserve"> 139 <value>The StorableClass attribute is obsolete; Use the StorableType attribute instead</value> 140 </data> 141 <data name="ObsoleteStorableClassAnalyzerMessageFormat" xml:space="preserve"> 142 <value>Type '{0}' should be marked as StorableType instead of StorableClass</value> 143 </data> 144 <data name="ObsoleteStorableClassAnalyzerTitle" xml:space="preserve"> 145 <value>Obsolete StorableClass attribute</value> 128 146 </data> 129 147 </root>
Note: See TracChangeset
for help on using the changeset viewer.