CCNet.ProjectChecker.Program.PerformChecks C# (CSharp) Метод

PerformChecks() приватный статический Метод

Performs all checks.
private static PerformChecks ( ) : void
Результат void
		private static void PerformChecks()
		{
			CheckWrongProjectFileLocation();
			CheckWrongManifestFileLocation();
			CheckWrongAssemblyInfoFileLocation();
			if (RaiseError.ExitCode > 0)
				return;

			ProjectHelper.LoadProject(Paths.ProjectFile);
			CheckWrongVisualStudioVersion();
			CheckUnknownConfiguration();
			CheckWrongPlatform();
			CheckWrongCommonProperties();
			CheckWrongDebugProperties();
			CheckWrongReleaseProperties();

			CheckWrongManifestContents();
			CheckWrongAssemblyInfoContents();

			CheckWrongReferences();

			CheckWrongFileSet();
			CheckForbiddenFiles();
			CheckWrongConfig();
			CheckWrongDefaultConfig();
		}