public static void CreatePostCss(string projectDirectory, string authServerProjectName, IFileSystem fileSystem)
        {
            var classPath = ClassPathHelper.AuthServerPostCssClassPath(projectDirectory, "postcss.config.js", authServerProjectName);
            var fileText  = GetPostCssText();

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