Esempio n. 1
0
        public void ClearUnusedContent()
        {
            var projectPath = _projectRetriever.ProjectFullPath;

            if (string.IsNullOrEmpty(projectPath))
            {
                return;
            }

            _commandExecuter.ExecuteCommand(projectPath, clearUnusedContentCommand);
        }
Esempio n. 2
0
 public void Compress(string projectFile)
 {
     _commandExecuter.ExecuteCommand(projectFile, vacuum);
 }