Cosmos/source2/VSIP/Cosmos.VS.Package/VSPackage.cs
DanStory_cp 3c724726fc Incremental check-in.
Added BuildOptionsPropertyPage(.cs) class and file.
Added ConfiguationBase(.cs) class and file.
Added DebugOptionsPropertyPage(.cs) class and file.
Added DebugOptionsQemu(.cs) class and file.
Added required guids of new property pages to Guids(.cs).
Added TitleDivision(.cs) class and file.
2009-05-23 12:21:32 +00:00

92 lines
No EOL
4.9 KiB
C#

using System;
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.ComponentModel.Design;
using System.IO;
using Microsoft.Win32;
using Microsoft.VisualStudio.Shell.Interop;
using Microsoft.VisualStudio.OLE.Interop;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Project;
namespace Cosmos.VS.Package {
/// <summary>
/// This is the class that implements the package exposed by this assembly.
///
/// The minimum requirement for a class to be considered a valid package for Visual Studio
/// is to implement the IVsPackage interface and register itself with the shell.
/// This package uses the helper classes defined inside the Managed Package Framework (MPF)
/// to do it: it derives from the Package class that provides the implementation of the
/// IVsPackage interface and uses the registration attributes defined in the framework to
/// register itself and its components with the shell.
/// </summary>
// This attribute tells the registration utility (regpkg.exe) that this class needs
// to be registered as package.
[PackageRegistration(UseManagedResourcesOnly = true)]
// A Visual Studio component can be registered under different regitry roots; for instance
// when you debug your package you want to register it in the experimental hive. This
// attribute specifies the registry root to use if no one is provided to regpkg.exe with
// the /root switch.
[DefaultRegistryRoot("Software\\Microsoft\\VisualStudio\\9.0")]
// This attribute is used to register the informations needed to show the this package
// in the Help/About dialog of Visual Studio.
[InstalledProductRegistration(false, "#110", "#112", "1.0", IconResourceID = 400)]
// In order be loaded inside Visual Studio in a machine that has not the VS SDK installed,
// package needs to have a valid load key (it can be requested at
// http://msdn.microsoft.com/vstudio/extend/). This attributes tells the shell that this
// package has a load key embedded in its resources.
[ProvideLoadKey("Standard", "1.0", "Cosmos Visual Studio Integration Package", "Cosmos", 1)]
[ProvideProjectFactory(
typeof(VSProjectFactory),
"Cosmos", // This is the overall group name in new project on left side
"Cosmos Project Files (*.Cosmos);*.Cosmos",
"Cosmos", "Cosmos",
@"..\..\Templates\Projects\CosmosProject"
, LanguageVsTemplate = "CosmosProject"
, NewProjectRequireNewFolderVsTemplate = false)]
// Property Pages
//[ProvideObject(typeof(PropPageEnvironment), RegisterUsing = RegistrationMethod.CodeBase)]
//[ProvideObject(typeof(PropPageTest), RegisterUsing = RegistrationMethod.CodeBase)]
[ProvideObject(typeof(BuildOptionsPropertyPage), RegisterUsing = RegistrationMethod.CodeBase)]
[ProvideObject(typeof(DebugOptionsPropertyPage), RegisterUsing = RegistrationMethod.CodeBase)]
[Guid(Guids.guidProjectPkgString)]
public sealed class VSProject : ProjectPackage {
/// <summary>
/// Default constructor of the package.
/// Inside this method you can place any initialization code that does not require
/// any Visual Studio service because at this point the package object is created but
/// not sited yet inside Visual Studio environment. The place to do all the other
/// initialization is the Initialize method.
/// </summary>
public VSProject() {
Trace.WriteLine(string.Format(CultureInfo.CurrentCulture, "Entering constructor for: {0}", this.ToString()));
}
// This is used in the MSBuild files to locate Cosmos tasks
// Will likely be used by other things in the future as well
private void SetCosmosVar() {
string xPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
int xPos = xPath.LastIndexOf(@"\source2\", StringComparison.InvariantCultureIgnoreCase);
xPath = xPath.Substring(0, xPos);
System.Environment.SetEnvironmentVariable("Cosmos", xPath, EnvironmentVariableTarget.User);
}
/////////////////////////////////////////////////////////////////////////////
// Overriden Package Implementation
/// <summary>
/// Initialization of the package; this method is called right after the package is sited, so this is the place
/// where you can put all the initilaization code that rely on services provided by VisualStudio.
/// </summary>
protected override void Initialize() {
SetCosmosVar();
Trace.WriteLine (string.Format(CultureInfo.CurrentCulture, "Entering Initialize() of: {0}", this.ToString()));
base.Initialize();
this.RegisterProjectFactory(new VSProjectFactory(this));
}
}
}