From 5eaa759b125e777a7bb8a49cbaa91dd92df8f567 Mon Sep 17 00:00:00 2001 From: Kelly Adams Date: Mon, 1 May 2017 14:07:48 -0700 Subject: [PATCH] Add rules from Mark, enable CodeAnalysis, add dictionary with IntelliTect name in it. --- IntelliTect.Utilities/CustomDictionary.xml | 9 +++++++++ IntelliTect.Utilities/IntelliTect.Utilities.csproj | 5 +++++ IntelliTect.Utilities/Properties/AssemblyInfo.cs | 6 ++++-- SolutionRuleset.ruleset | 14 ++++++++++++++ 4 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 IntelliTect.Utilities/CustomDictionary.xml create mode 100644 SolutionRuleset.ruleset diff --git a/IntelliTect.Utilities/CustomDictionary.xml b/IntelliTect.Utilities/CustomDictionary.xml new file mode 100644 index 0000000..e611429 --- /dev/null +++ b/IntelliTect.Utilities/CustomDictionary.xml @@ -0,0 +1,9 @@ + + + + + Intelli + Tect + + + \ No newline at end of file diff --git a/IntelliTect.Utilities/IntelliTect.Utilities.csproj b/IntelliTect.Utilities/IntelliTect.Utilities.csproj index 37399b2..fe9de74 100644 --- a/IntelliTect.Utilities/IntelliTect.Utilities.csproj +++ b/IntelliTect.Utilities/IntelliTect.Utilities.csproj @@ -21,6 +21,8 @@ DEBUG;TRACE prompt 4 + ..\SolutionRuleset.ruleset + true pdbonly @@ -47,5 +49,8 @@ + + + \ No newline at end of file diff --git a/IntelliTect.Utilities/Properties/AssemblyInfo.cs b/IntelliTect.Utilities/Properties/AssemblyInfo.cs index cadaf7d..9892e3d 100644 --- a/IntelliTect.Utilities/Properties/AssemblyInfo.cs +++ b/IntelliTect.Utilities/Properties/AssemblyInfo.cs @@ -1,4 +1,5 @@ -using System.Reflection; +using System; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -10,9 +11,10 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("IntelliTect")] [assembly: AssemblyProduct("IntelliTect.Utilities")] -[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyCopyright("Copyright © IntelliTect 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] +[assembly: CLSCompliant(true)] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from diff --git a/SolutionRuleset.ruleset b/SolutionRuleset.ruleset new file mode 100644 index 0000000..a5f2eac --- /dev/null +++ b/SolutionRuleset.ruleset @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file