We are creating the addin for EA.So is there any Prerequisites for creating the addin for EA 12.1 that it should be created using Visual studio 2013 ultimate. Or Can the addins for EA 12.1 can also be created in the Visual studio 2013 community Edition.
An Add-In is deployed as a DLL. So as long as the VS edition supports DLL projects, you'll be fine. If it also supports some way to create an installer, eg WiX, that helps too.
EA's Interop DLL is the only library (outside the regular Windows platform) you need, and Add-Ins can be written in any environment and language which supports COM. .NET and C# is the most common, but you could write an Add-In in C++ if you wished.
Related
I'd like to know if there is a way to automatically deploy NuGet package.
I tried many extensions but not working for VS 2017.
I do know that there is a packager as new VS 2017 feature. But there is no package tab in my project (.NET Library) properties.
If you want the integrated package management for .NET Framework Libraries (not .NET Standard or .NET Core), you can create a .NET Standard Library and edit the csproj file by replacing
<TargetFramework>netstandard1.4</TargetFramework>
with
<TargetFramework>net461</TargetFramework>
There is no built-in template yet for this library type and some designers (win forms, xaml, ..) will not be available but this unlocks all integrated packaging features.
I have strange problem which is concerned to Visual Studio 2010 Add-ins. I have installed WSDL Generation Tools 2010 Add-in to generate proxy classes from WSDL files. The problem is when first time I have opened a Visual in Tools tab there was WSDL generation tool but when I restore settings there was no longer this add-in. What is strange: when I run Visual there is still window Wsdl generation info and in Add-in manager there is still checked Wsdl Generation 2010 option but in Tools list there is no this tool.
Any ideas?
I have been working on a Visual Studio solution template to be used internally and have been developing this in a Visual Studio 2012 Addin.
The addin is added to the tools menu of Visual Studio and all works fine.
The only question now is, how can I share this tool between my team?
I have added a VSIX project, which in turn references the Solution Template project (added as an asset) but will this alone do it?
I can't see how installing the VSIX I created is manually going to add my add-in to the Visual Studio Tools window.
Can anyone offer any advice as to how I can do this or is there some other way to deploy/publish a Visual Studio addin?
I have found a tutorial which is similar, but I just want to use the VSIX to install my add-in to Visual Studio tools menu, rather than add it as a project template. I have looked around and there doesn't seem to be much information on how to deploy your addin.
It seems addins are soon to be deprecated with the next release of Visual Studio, although I have found this article on how to convert an addin to a VSPackage.
And with a VSPackage I will be able to deploy using VSIX.
There are also some tutorials on VSPackages here.
I coded a c++ Library in Eclipse. Now I wanna add a GUI, which I want to make with Visual studio. Although I'm using the VS Compiler in Eclipse I cannot transfer the code from Eclipse 1:1 to Visual Studio.
Is there a way to create a DLL or sth. else in Eclipse which I can import in Visual Studio?
Thanks
Florian
I have a CUDA project in Nsight Eclipse under Linux, but one of the machine where I have to test my code uses Windows 8 with Visual Studio 2012 Professional. How can I convert my project from the Eclipse edition to the Visual Studio edition? Or if it is not possible, at least how can I compile to Windows application from Nsight Eclipse under Linux?
You cannot do either. You will need to create a Visual Studio project on Windows using your existing source files.
Unless you are using some Linux-specific libraries in your host code, you should not run into any problems on Windows.