コード例 #1
0
ファイル: EditorIntegration.cs プロジェクト: waodng/VSIX
            public NotificationActivator(EditorIntegration editorIntegration, string filePath)
            {
                Contract.Assert(editorIntegration != null);
                Contract.Assert(filePath != null);

                this.editorIntegration = editorIntegration;
                this.filePath          = filePath;
            }
コード例 #2
0
 public VisualStudioIntegration()
 {
     Editor = new EditorIntegration(this);
 }