CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
DoesOperationHaveAttributeAnalyzerConstants.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 public static class DoesOperationHaveAttributeAnalyzerConstants
4 {
5 public const string Title = "Find Operations That Do Not Have an Operation Attribute";
6 public const string IdentifierText = "DoesOperationHaveAttribute";
7 public const string Message = "Operations should have the appropriate operation attribute";
8 }
9
10 public static class DoesOperationHaveAttributeAnalyzerAddAttributeCodeFixConstants
11 {
12 public const string AddAttributeAndUsingDescription = "Add attribute and using statement";
13 public const string AddAttributeDescription = "Add attribute";
14 public const string CslaNamespace = "Csla";
15 }
16}