public static void CreateViewImports(string projectDirectory, string authServerProjectName, IFileSystem fileSystem)
        {
            var classPath = ClassPathHelper.AuthServerViewsClassPath(projectDirectory, "_ViewImports.cshtml", authServerProjectName);
            var fileText  = GetViewImportsTest(projectDirectory, authServerProjectName);

            Utilities.CreateFile(classPath, fileText, fileSystem);
        }