check if specific plugin install in eclipse - c++

I wrote a new plugin to Eclipse, and also installed it.
Now- I want to check programmatically (C++ via QT) if the plugin was installed correctly.
so I want to find a way to retrieve all the plugins that installed on my eclipse.
any idea?

in Eclipse go to Help menu, click About Eclipse, Installation Details and click the plugins tab. That should get you an overview.

Related

Ho Do I Restart Sitecore Server From Code?

We have a requirement to install Sitecore packages programmatically from a custom admin page. The package installation is working but once the package is installed I wanted to restart the Sitecore server from code.
Sitecore.Install.Installer installer = new Sitecore.Install.Installer();
I tried with installer.ExecutePostStep but not sure what action I need to provide to this function.
If anyone has done it before Please help .
Basically I wanted to execute the functionality from code what the two below check boxes are doing when we do manual installation.
The easiest thing will be to restart the Sitecore's application pool by a Restart-Application PowerShell command.
Find more details here.

Installing CppCheck on Codeblocks

I have downloaded Codeblocks in a Windows 10 computer and now I am trying to install CppCheck on it.
However, also surfing the net to find a solution, I can't understand how can I install CppCheck (on Codeblocks).
Can anyone explain it to me?
Steps to follow :
Download Codeblocks
Cppcheck is a Contrib plugin integrated in Codeblocks
So, choose the setup from the download page which has all the plugins available
Install Codeblocks
Make sure Cppcheck plugin is selected under Contrib plugins
Install Cppcheck tool for your respective platform
Open Codeblocks and open the Environment Settings via the Settings Menu
Scroll down and select the Cppcheck/Vera++ Tab
Change the Cppcheck application field by clicking on the button with ...
Navigate to the path where Cppcheck tool was installed (Ex: C:\Program Files\Cppcheck\cppcheck.exe)
Click OK
Open a project in Codeblocks and under Plugins Menu select CppCheck to run the tool

How can I configure what .NET version should be installed by windows installer in VS 2017

Currently I am working on a project that needs .NET 4.0 to work properly but when I configure the windows installer and try to install it is trying to install the latest version of .NET. So how can I configure the windows installer to install the .NET version on which the project was created. Also I would like to know how to include the Visual C++ Redistributable in my installer.
When you create a setup project and add primary output of a project to the setup project, the setup project automatically detect dependencies including Microsoft .Net Framework. To see if the detected dependency is correctly what you need, you cam see the following locations:
First of all, right click on Dependencies and click on Refresh Dependencies.
Check prerequisites for your project:
Right click on setup project and choose Properties.
In Properties dialog, from the Configurations combo box choose the configuration, and repeat the following steps for both Debug and Release.
Click on Prerequisites... button to open Prerequisites.
In the Prerequisites dialog, check the desired .Net Framework version.
Press OK and Make sure you repeat above steps for both Debug and Release.
Check Launch Conditions for your setup project:
Right click on setup project and from View select Launch Conditions:
Then under Launch COnditions node, select .Net Framework node and right click and select Properties Window.
In Properties Window check the Version property for .Net Framework launch condition.

How do I create a MeteorJS project in IntelliJ?

I would like to create a MeteorJS project in IntelliJ IDEA Ultimate 14.1, but it is not showing up in the "New Projects" template:
I have MeteorJS installed and running elsewhere, but I'm unable to find a way to create a MeteorJS project through IDEA.
It's definitely supported, so what am I doing wrong?
The Meteor plugin is not part of IDEA by default.
Here it says:
Note: The plugin is a part of WebStorm IDE and you don't need install it manually for WebStorm
If you are not using WebStorm you should install the plugin.
You can do this by doing the following:
Go to the Preferences menu (CMD , in OSX)
Click the "Plugins" section in the left pane
Click "Install Jetbrains plugin..." in the right panel in the lower
left
Search for "Meteor" in the search box
Click "Install plugin" in the right box

Cannot configure SVN on Qt

I have installed VisualSVN server and Win32Svn. Now I want to integrate it with Qt... I setup svn configuration in Tool -> Version control -> Subversion (see picture http://i.stack.imgur.com/BY3XG.png)
Now I want to create new project and add it to version control, but no option here :( (see picture http://i.stack.imgur.com/tKJNK.png)
I have absolutely no idea why... Can someone help me? What I did wrong or what I didn't?
If the repository already exists, try to use Import project -> Subversion checkout instead of New project.