89 lines
3.9 KiB
C#
89 lines
3.9 KiB
C#
/*
|
|
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace QuantConnect.VisualStudioPlugin
|
|
{
|
|
/// <summary>
|
|
/// This is the class that implements the package exposed by this assembly.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// 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. These attributes tell the pkgdef creation
|
|
/// utility what data to put into .pkgdef file.
|
|
/// </para>
|
|
/// <para>
|
|
/// To get loaded into VS, the package must be referred by <Asset Type="Microsoft.VisualStudio.VsPackage" ...> in .vsixmanifest file.
|
|
/// </para>
|
|
/// </remarks>
|
|
[PackageRegistration(UseManagedResourcesOnly = true)]
|
|
[InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)] // Info on this package for Help/About
|
|
[ProvideMenuResource("Menus.ctmenu", 1)]
|
|
[Guid(PackageGuidString)]
|
|
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
|
|
[ProvideOptionPage(typeof(OptionPageGrid), "QuantConnect", "Settings", 0, 0, true)]
|
|
[ProvideToolWindow(typeof(ToolWindow1))]
|
|
public sealed class QuantConnectPackage : Package
|
|
{
|
|
/// <summary>
|
|
/// SendForBacktestingcsPackage GUID string.
|
|
/// </summary>
|
|
public const string PackageGuidString = "2c9c2f3d-2cc2-437f-928c-0ef5fdfcfed3";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SolutionExplorerMenuCommand"/> class.
|
|
/// </summary>
|
|
public QuantConnectPackage()
|
|
{
|
|
// 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.
|
|
}
|
|
|
|
#region Package Members
|
|
|
|
/// <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 initialization code that rely on services provided by VisualStudio.
|
|
/// </summary>
|
|
protected override void Initialize()
|
|
{
|
|
ToolMenuCommand.Initialize(this);
|
|
var toolWindow = (IBacktestObserver)ToolWindow1Command.Initialize(this);
|
|
SolutionExplorerMenuCommand.Initialize(this, toolWindow);
|
|
base.Initialize();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
|
|
/// <summary>
|
|
/// QuantConnect options
|
|
/// </summary>
|
|
[Guid("92D0E244-D0DA-458C-88FB-9C0827052177")]
|
|
public class OptionPageGrid : DialogPage
|
|
{
|
|
}
|
|
}
|