Cosmos/source2/InstallCleaner/Program.cs
mterwoord_cp e1945e7966
2010-08-15 17:51:39 +00:00

42 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace InstallCleaner
{
class Program
{
static void Main(string[] args)
{
CleanupUserKitInstallDir();
CleanupOldTemplates_Shell();
CleanupOldTemplates_Express();
}
/// <summary>
/// Removes any old cosmos templates in "Microsoft Visual Studio 9.0\Common7\IDE\ProjectTemplates"
/// </summary>
private static void CleanupOldTemplates_Shell()
{
throw new NotImplementedException();
}
/// <summary>
/// Removes any old cosmos templates in user template directories, most likely in My Documents. Implement for each language.
/// </summary>
private static void CleanupOldTemplates_Express()
{
throw new NotImplementedException();
}
/// <summary>
/// Cleans up the Build and Kernel subdirectories of the installation root.
/// </summary>
private static void CleanupUserKitInstallDir()
{
throw new NotImplementedException();
}
}
}