Rider - Adding libraries to 'Add Reference' window - rider

I'm creating some class libraries to share code between projects and each library requires references to external libraries. So far the only way I've found to add these libraries is using the 'Add From...' button in the 'Add Reference' window.
Is there a way to add my libraries to the list in the window so they can be found by using the search bar?
Or is there another way to quickly add a bunch of libraries as reference?

It is the very good feature we try to add it. Please issue our issue tracker to track progress or voting: https://youtrack.jetbrains.com/v2/issue/RIDER-12756

Related

Displaying filtered issues in JIRA project tab

This is my first attempt to create a JIRA plugin and I'm completely lost.
I have already managed to create a project tab plugin. However, I can't find the way to populate the screen with any more than HTML.
My main goal is to display a list of filtered issues in the project tab. I saw the issues list displayed in the Versions tab (screenshot: http://cl.ly/image/0g1O3v0M0p38/Screen%20Shot%202015-03-25%20at%203.49.35%20PM.png) and I figured I could copy the code that did that on a project tab. However I can't find the code that does this.
Any pointers you can give me would be highly appreciated.
TL;DR: Need to know how to filter issues and display them in a project tab.
1) how to filter issues
Please look here: https://confluence.atlassian.com/display/JIRA/__Searching+in+JIRA
2) display them in a project tab.
Here is the answer: JIRA Plugins - How to add webwork action to a project panel?

Use VB.NET DLL in VB.NET

I would like to use a Class Library project in a Windows Forms project. Here's what I did:
Make a Class Library project.
Code it.
Go to BUILD on the menu bar, then do Build.
Now that I've done that, I don't see an option to use the DLL in my other project.
You need a reference to the library project to use it.
In the project where you want to use the library, right click on the "References" node in the solution explorer, and select "Add Reference...".
It will open the reference manager, there you select the "Solution" tab. It will show you the projects in your solution, and you can check the checkbox in front of your library project.
In your "other" project "right click" References => "Add Reference...." => "Browse..."
Then navigate to your dll and select it.

Generate manifest for regfree COM from a VB project

I am trying to generate a manifest for a set of COM objects that are being used in our code as registration-free COM.
For that purpose I created a VB project in VS 2010 and added the COM objects DLLs as dependencies. The problem is I do not see them listed as dependencies in the generated manifest. Am I missing something simple like a project setting to generate the proper manifest listing the dependencies?
You left out too many details and the VB.NET IDE hides too much to do this right. It is not automatic.
Starting point is to force it to show more. Locate the "Show All Files" toolbar button in the Solution Explorer window (use the tooltip to find it back). Click it and you now get the "References" node added to the project.
Open it and locate the COM component that you added to the project. Select it and look at the Properties window. Set the "Isolated" property to True. Rebuild the project. Be sure to look in the Output window for any warnings. And to look at the .manifest file on disk instead of the one the IDE shows you if you added a manifest to your project yourself.

Adding DLL reference to VB.NET project

Just to start off, this question does seem very similar to another post Add the DLL (lame_enc.dll) reference to my project, but I haven't been able to successfully apply that answer. I am pretty new to VB.NET so it is very possible I'm simply missing something obvious.
I am trying to link a DLL to a VB.NET 2010 project to allow my VB app to play *.ogg files. I followed some other advice here on the forums and downloaded FMOD's FMOD Ex Programmers API. I am trying to now reference that functionality. These appear to be the files I need to somehow reference.
C:\Program Files (x86)\FMOD SoundSystem\FMOD Programmers API Windows\api\fmodex64.dll.
C:\Program Files (x86)\FMOD SoundSystem\FMOD Programmers API Windows\api\libfmodex64_vc.lib.
I haven't discovered how to add a *.lib reference (or the equivalent), but selecting the DLL as a reference gives the following error.
A reference to 'C:\Program Files (x86)\FMOD SoundSystem\FMOD
Programmers API Windows\api\fmodex64.dll' could not be added. Please
make sure that the file is accessible, and that it is a valid assembly
or COM component.
I'm not sure what I could be missing. Any ideas? Thanks!
In Solution Explorer, double-click the My Project node for the project.
In the Project Designer, click the References tab.
Click the Add button to open the Add Reference dialog box.
In the Add Reference dialog box, select the tab indicating the type of component you want to reference.
Select the components you want to reference, then click OK.
Another approach I was trying is working for me. I found a site with a working example of a LibZPlay VB.NET sample ( http://planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=7789&lngWId=10 ). It runs under VS 2008 and I was able to adapt my project to use LibZPlay (open source library http://libzplay.sourceforge.net/WELCOME.html ) under VS 2008.
That is sufficient for me for now. Thanks for your advice. It was likely some configuration issue or misunderstanding on my end.
Using VB.net 2015 I (could not add or even find a System32 dll) as a reference using Solution Explorer, Tab References. Going to the MAIN Menu, Projects/Add References...
Used Browse and All the System32 dll were visible. Then I was able to load the needed dll.

VB.NET - how to remove Infragistics references

I moved a vb project to a new computer. This one does not have Infragistics libraries installed. Apparently on the original computer it was installed, and the vb project must have some reference to it (see error bellow) even though I'm not using it in the project. So I am getting this error on the new computer.
Unable to resolve type 'Infragistics.Win.UltraWinGrid.UltraCombo, Infragistics2.Win.UltraWinGrid.v9.1, Version=9.1.20091.1000, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'
How do I get rid of it?
Look in the list of "references" for the project, if there is a reference in there (probably with a yellow warning shield) then simply delete it. After that look in the vbproj file for any other references. That should address it.
If it is not in either of those two areas, look for imports in the source files themselves.
If you want to remove all refrences of the Infragistics components. You need to remove from Refrences folder, by doing this you have to remove all the code refering to the controls using those refrences. You need to use predefined controls.
You can use the add or remove program in control panel. using that you can uninstall the this components.