-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add LINQPad plugin #53
base: master
Are you sure you want to change the base?
Add LINQPad plugin #53
Conversation
This is really nice! But it doesn't compile in VS2010... are you able / willing to back port? |
Actually I don't have VS2010 on any of my machines :( What I did here is taken VS2015 project format, lowered ToolsVersion to 4.0 and hoped for the best :) I could try copying the other project and change it, but I can't check if it works. |
All cool, I think I should have a pretty easy time fixing the project for VS2010 myself -- I am still trying to maintain backwards compatibility there. |
So I've got the project format fixed for VS2010 and pushed to a branch for now: https://github.com/SwensenSoftware/fseye/tree/kirill-gerasimenko-linqpad_plugin. But
Ultimately, I think this plugin may be a nice candidate for distribution through a separate channel rather than packaged as a default plugin (e.g. distribute as a separate NuGet package). One way or another, this is a really nice plugin and would be great to make widely available. |
Hi, If the plugin is not included in the main distribution than it means that it should be manually copied to "plugins" folder along with it's dependencies, right? This doesn't sound easy :) open Swensen.FsEye.Fsi
Swensen.FsEye.PluginsFolders.add @"c:\..."
fsi.AddPrintTransformer eye.Listener //attached the listener What do you think? |
Hi,
Here is PR that adds LinqPad view plugin. I find it very useful.
Hope it will be for others.