Getting error "The add-in is trying to extend , but there isn't any compatible add-in defining this...
I'm working on an extension for Visual Studio for Mac and have it working locally. When I attempt to create the extension package and install it, I get several errors that my extension doesn't properly install because it doesn't define the proper "extension points".
Errors include:
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/StartupHandlers', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/Commands/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/MainMenu/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/ProjectModel/ExtendedProperties', but there isn't any compatible add-in defining this extension point.
I understand that this is likely because I don't have my Dependencies set up correctly, but I don't understand what I'm doing wrong. Please help.
I've looked at various articles about Dependencies and haven't found why my code isn't set up correctly.
[assembly: AddinDependency( "::MonoDevelop.Core", MonoDevelop.BuildInfo.Version )]
[assembly: AddinDependency( "::MonoDevelop.Ide", MonoDevelop.BuildInfo.Version )]
Expected: When running vstool to create the .mpack file, it should properly include all dependencies to install in Visual Studio
Actual: Errors occur when attempting to install.
c# monodevelop visual-studio-extensions
add a comment |
I'm working on an extension for Visual Studio for Mac and have it working locally. When I attempt to create the extension package and install it, I get several errors that my extension doesn't properly install because it doesn't define the proper "extension points".
Errors include:
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/StartupHandlers', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/Commands/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/MainMenu/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/ProjectModel/ExtendedProperties', but there isn't any compatible add-in defining this extension point.
I understand that this is likely because I don't have my Dependencies set up correctly, but I don't understand what I'm doing wrong. Please help.
I've looked at various articles about Dependencies and haven't found why my code isn't set up correctly.
[assembly: AddinDependency( "::MonoDevelop.Core", MonoDevelop.BuildInfo.Version )]
[assembly: AddinDependency( "::MonoDevelop.Ide", MonoDevelop.BuildInfo.Version )]
Expected: When running vstool to create the .mpack file, it should properly include all dependencies to install in Visual Studio
Actual: Errors occur when attempting to install.
c# monodevelop visual-studio-extensions
Can you post a link to the generated .mpack and the source code for your addin? Apart from/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.
– Matt Ward
Jan 3 at 11:59
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I cannot see/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is/MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?
– Matt Ward
Jan 4 at 12:26
add a comment |
I'm working on an extension for Visual Studio for Mac and have it working locally. When I attempt to create the extension package and install it, I get several errors that my extension doesn't properly install because it doesn't define the proper "extension points".
Errors include:
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/StartupHandlers', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/Commands/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/MainMenu/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/ProjectModel/ExtendedProperties', but there isn't any compatible add-in defining this extension point.
I understand that this is likely because I don't have my Dependencies set up correctly, but I don't understand what I'm doing wrong. Please help.
I've looked at various articles about Dependencies and haven't found why my code isn't set up correctly.
[assembly: AddinDependency( "::MonoDevelop.Core", MonoDevelop.BuildInfo.Version )]
[assembly: AddinDependency( "::MonoDevelop.Ide", MonoDevelop.BuildInfo.Version )]
Expected: When running vstool to create the .mpack file, it should properly include all dependencies to install in Visual Studio
Actual: Errors occur when attempting to install.
c# monodevelop visual-studio-extensions
I'm working on an extension for Visual Studio for Mac and have it working locally. When I attempt to create the extension package and install it, I get several errors that my extension doesn't properly install because it doesn't define the proper "extension points".
Errors include:
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/StartupHandlers', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/Commands/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/Ide/MainMenu/Edit', but there isn't any compatible add-in defining this extension point.
The add-in 'MyPlugin,0.1' is trying to extend '/MonoDevelop/ProjectModel/ExtendedProperties', but there isn't any compatible add-in defining this extension point.
I understand that this is likely because I don't have my Dependencies set up correctly, but I don't understand what I'm doing wrong. Please help.
I've looked at various articles about Dependencies and haven't found why my code isn't set up correctly.
[assembly: AddinDependency( "::MonoDevelop.Core", MonoDevelop.BuildInfo.Version )]
[assembly: AddinDependency( "::MonoDevelop.Ide", MonoDevelop.BuildInfo.Version )]
Expected: When running vstool to create the .mpack file, it should properly include all dependencies to install in Visual Studio
Actual: Errors occur when attempting to install.
c# monodevelop visual-studio-extensions
c# monodevelop visual-studio-extensions
asked Jan 2 at 23:46
GamingGameDevGamingGameDev
61
61
Can you post a link to the generated .mpack and the source code for your addin? Apart from/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.
– Matt Ward
Jan 3 at 11:59
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I cannot see/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is/MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?
– Matt Ward
Jan 4 at 12:26
add a comment |
Can you post a link to the generated .mpack and the source code for your addin? Apart from/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.
– Matt Ward
Jan 3 at 11:59
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I cannot see/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is/MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?
– Matt Ward
Jan 4 at 12:26
Can you post a link to the generated .mpack and the source code for your addin? Apart from
/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.– Matt Ward
Jan 3 at 11:59
Can you post a link to the generated .mpack and the source code for your addin? Apart from
/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.– Matt Ward
Jan 3 at 11:59
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I cannot see
/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is /MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?– Matt Ward
Jan 4 at 12:26
I cannot see
/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is /MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?– Matt Ward
Jan 4 at 12:26
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014648%2fgetting-error-the-add-in-add-in-name-is-trying-to-extend-various-extensions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014648%2fgetting-error-the-add-in-add-in-name-is-trying-to-extend-various-extensions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you post a link to the generated .mpack and the source code for your addin? Apart from
/MonoDevelop/ProjectModel/ExtendedProperties
, which I cannot find, the other extension points should be defined by the MonoDevelop.Ide addin.– Matt Ward
Jan 3 at 11:59
I found the issue. I was creating the .mpack off of my .xml and not from the .dll. Do you know which addin I need to add as a dependency to get ExtendedProperties?
– GamingGameDev
Jan 3 at 19:02
I cannot see
/MonoDevelop/ProjectModel/ExtendedProperties
anywhere. Grepping through the monodevelop source code the closest I can see is/MonoDevelop/ProjectModel/ProjectModelExtensions
. Can you provide more information about what you are trying to do and where you found ExtendedProperties from?– Matt Ward
Jan 4 at 12:26