/ SolutionInfo.cs
SolutionInfo.cs
1 // -------------------------------------------------------------------------------------------------------------------- 2 // <copyright company="o.s.i.s.a. GmbH" file="SolutionInfo.cs"> 3 // (c) 2014. See licence text in binary folder. 4 // </copyright> 5 // -------------------------------------------------------------------------------------------------------------------- 6 7 using System.Security; 8 9 [assembly: SecurityRules(SecurityRuleSet.Level1)] 10 11 internal static class SolutionInfo 12 { 13 #region Constants 14 15 /// <summary> 16 /// Solution wide company name for the assemblyInfo files. 17 /// </summary> 18 public const string Company = "open source"; 19 20 /// <summary> 21 /// Solution wide copyright description for the assemblyInfo files. 22 /// </summary> 23 public const string Copyright = "no copyrights"; 24 25 /// <summary> 26 /// Solution wide product description for the assemblyInfo files. 27 /// </summary> 28 public const string Product = "Grade View"; 29 30 /// <summary> 31 /// Solution wide trademark description for the assemblyInfo files. 32 /// </summary> 33 public const string Trademark = "GradeView"; 34 35 #endregion 36 }