CCNet.Build.Reconfigure.WebsiteProjectConfiguration.GetIssuesToCheck C# (CSharp) Method

GetIssuesToCheck() protected method

protected GetIssuesToCheck ( ) : List
return List
		protected override List<string> GetIssuesToCheck()
		{
			var checks = base.GetIssuesToCheck();

			// replace I01 (ShouldHaveAppConfig) and I02 (ShouldHaveAppConfigDefault)
			// with I03 (ShouldHaveWebConfig) and I04 (ShouldHaveWebConfigDefault)
			var i01 = checks.IndexOf("I01");
			checks.Insert(i01, "I04");
			checks.Insert(i01, "I03");
			checks.Remove("I01");
			checks.Remove("I02");

			// replace P20 (OutputPathDefault) with P21 (OutputPathBin)
			var p20 = checks.IndexOf("P20");
			checks.Insert(p20, "P21");
			checks.Remove("P20");

			return checks;
		}
	}
WebsiteProjectConfiguration