Cosmos/source/Cosmos.VS.ProjectSystem/VSProject.cs
2017-03-19 09:29:46 -05:00

110 lines
No EOL
4.6 KiB
C#

// The symbol defined below enables method call on LogUtility. Should you wish to disable logging
// please DO NOT remove this code line and DO comment it out.
#define FULL_DEBUG
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;
using Microsoft.VisualStudio;
namespace Cosmos.VS.ProjectSystem {
/// 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.
//
[PackageRegistration(UseManagedResourcesOnly = true)]
[DefaultRegistryRoot("Software\\Microsoft\\VisualStudio\\12.0")]
[InstalledProductRegistration(
"Cosmos Visual Studio Integration Package",
"www.gocosmos.org",
"1.0",
IconResourceID = 400,
LanguageIndependentName = "Cosmos Visual Studio Integration Package")]
[ProvideLoadKey("Standard", "1.0", "Cosmos Visual Studio Integration Package", "Cosmos", 1001)]
[ProvideObject(typeof(CosmosPage), RegisterUsing = RegistrationMethod.CodeBase)]
[Guid(Guids.guidProjectPkgString)]
public sealed class VSProject : ProjectPackage, IVsInstalledProduct {
/// 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.
public VSProject() {
LogUtility.LogString("Cosmos.VS.ProjectSystem.VSProject instantiated");
}
// 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() {
// MtW: we can just use typeof(VSProject).Assembly.Location
//Trace.WriteLine("Todo: implement set cosmos var, or find something else for it..");
//string xPath = System.Reflection.Assembly.GetExecutingAssembly().Location;
//int xPos = xPath.LastIndexOf(@"\source\", StringComparison.InvariantCultureIgnoreCase);
//xPath = xPath.Substring(0, xPos);
// var xPath = @"E:\Cosmos";
//System.Environment.SetEnvironmentVariable("Cosmos", xPath, EnvironmentVariableTarget.User);
}
/////////////////////////////////////////////////////////////////////////////
// Overriden Package Implementation
/// 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.
protected override void Initialize() {
LogUtility.LogString("Cosmos.VS.ProjectSystem initializing");
try {
SetCosmosVar();
base.Initialize();
this.RegisterProjectFactory(new VSProjectFactory(this));
LogUtility.LogString("Cosmos.VS.ProjectSystem successfully initialized");
}
catch (Exception E) {
LogUtility.LogException(E);
}
}
//[InstalledProductRegistration(false, "Cosmos Visual Studio Integration Package", "www.gocosmos.org", "1.0", IconResourceID = 400,
// LanguageIndependentName = "Cosmos Visual Studio Integration Package")]
int IVsInstalledProduct.IdBmpSplash(out uint pIdBmp) {
pIdBmp = 400;
return VSConstants.S_OK;
}
int IVsInstalledProduct.IdIcoLogoForAboutbox(out uint pIdIco) {
pIdIco = 400;
return VSConstants.S_OK;
}
int IVsInstalledProduct.OfficialName(out string pbstrName) {
pbstrName = "Cosmos";
return VSConstants.S_OK;
}
int IVsInstalledProduct.ProductDetails(out string pbstrProductDetails) {
pbstrProductDetails = "www.goCosmos.org";
return VSConstants.S_OK;
}
int IVsInstalledProduct.ProductID(out string pbstrPID) {
pbstrPID = "User Kit";
return VSConstants.S_OK;
}
public override string ProductUserContext {
get { throw new NotImplementedException(); }
}
}
}