Giter Site home page Giter Site logo

codingadventures / linqbridgevs Goto Github PK

View Code? Open in Web Editor NEW
127.0 127.0 21.0 16.43 MB

Dumps the content of variables during debugging in Visual Studio to LINQPad

License: MIT License

C# 98.80% Smalltalk 1.20%
aspect-oriented-programming c-sharp debugger debugger-visualizer linqpad magnifier-glass visual-studio vsix-extensions

linqbridgevs's People

Contributors

codingadventures avatar gitter-badger avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

linqbridgevs's Issues

Add serialization type as an option

As of now an object is serialized using a binary formatter or Json.NET. There is no option to choose the serialization type. Add it to visual studio option and implement it into Grapple

XElement nodes are not serialized correctly

Hello,
I have an object with a property of type XElement. When I inspect the object I can see all properties in LinqPAD but the only one of type XElement is always Null.

Regards,
Filippo.

Windows x86 - Error during installation - v1.4.6

The type initializer for 'BridgeVs.Shared.Common.CommonFolderPaths' threw an exception.
at BridgeVs.VsPackage.Helper.Configuration.PackageConfigurator.IsLINQPadInstalled(String vsVersion)
at BridgeVs.VsPackage.Helper.Configuration.PackageConfigurator.Install(String vsVersion, String vsEdition)
at BridgeVs.VsPackage.Package.BridgeVsPackage.Initialize()
Value cannot be null.
Parameter name: path1 at System.IO.Path.Combine(String path1, String path2)
at BridgeVs.Shared.Common.CommonFolderPaths..cctor()

Linqpad script generation needs full type name

visualizing the mem variable in Using mem As New System.IO.MemoryStream(My.Resources.Bill_of_Lading) I get this linqpad script.

void Main()
{
    Truck truck = new Truck("LINQBridgeVsTruck");
	truck.WaitDelivery("MemoryStream").Wait();
    var @object = truck.UnLoadCargo<IO.MemoryStream>();
    @object.Dump("IO.MemoryStream", 2);
}

It should be

void Main()
{
    Truck truck = new Truck("LINQBridgeVsTruck");
	truck.WaitDelivery("MemoryStream").Wait();
    var @object = truck.UnLoadCargo<System.IO.MemoryStream>();
    @object.Dump("IO.MemoryStream", 2);
}

Long List bridge

When I try to upload to bridge a Long list (60000 elements) I have such message.
Is it possible configure VS to increase the "time out"
image

No magnifier glass

I installed the 2017 version. I enabled the bridge, set a breakpoint after an instance of my class was initialized, run it. I don't see a magnifying glass on the instance. I also created a string array and no magnifying.

It's not clear how the whole process works. What do in the LinqPad? Is there something visible in there? Do we start using the same variable names as in the VS code?
Appreciate a quick YouTube video where you are showing how it works.

Unhandled exception... Function evaluation was aborted

I installed and enabled LINQbridge on VS2013 Professional with Windows 10 Professional as SO. I launched VS2013 as administrator, when I click on magnifying glass I receive the error below. LINQPad4 is installed in the proper folder and I gave rights to C:\Users\myuser\Documents\Visual Studio 2013 to user Everyone with full control. My project is a WPF one and I was debugging a dll referenced by WPF project.

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Function evaluation was aborted.
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.MaybeDeserializeAndThrowException(Byte[] data)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.WriteDataToStreamAndThrowOnException(Byte[] data, Stream dataStream)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.WriteDataToStreamAndThrowOnException(Byte[] data)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider.GetData()
at LINQBridgeVs.DynamicVisualizer.V12.DynamicDebuggerVisualizerV12.Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ManagedShim.DelegatedHost.CreateViewer(IntPtr hwnd, HostServicesHelper hsh, SafeProxyWrapper proxy)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll

Microsoft.VisualStudio.Platform.AppDomainManager
Assembly Version: 12.0.0.0
Win32 Version: 12.0.21005.1
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Platform.AppDomainManager/v4.0_12.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Platform.AppDomainManager.dll

System
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll

System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll

System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll

System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll

System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll

System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.6.1586.0 built by: NETFXREL2
CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

Microsoft.VisualStudio.DebuggerVisualizers
Assembly Version: 12.0.0.0
Win32 Version: 12.0.21005.1
CodeBase: file:///C:/WINDOWS/assembly/GAC_MSIL/Microsoft.VisualStudio.DebuggerVisualizers/12.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.DebuggerVisualizers.dll

DotNetDynamicVisualizerType.V12.0
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/f.delpozzo.HYLASOFT/Documents/Visual%20Studio%202013/Visualizers/DotNetDynamicVisualizerType.V12.0.dll

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Add support for .NET Core

Adds support for .NET Core. The new version of Mono.Cecil 0.10 is needed along with some tweaks to BridgeVs.SInject

IndexOutOfRangeExceptionBridgeVs.Grapple.Grapple.BinaryGrapple in Grab

IndexOutOfRangeException: Index was outside the bounds of the array.
Module "BridgeVs.Grapple.Grapple.BinaryGrapple", line 0, col 0, in Grab
System.Tuple`2[System.Type,System.Byte[]] GrabT
Module "BridgeVs.Grapple.Truck", line 16, col 0, in LoadCargo
Void LoadCargoT
Module "BridgeVs.DynamicVisualizers.DynamicObjectSource", line 355, col 0, in BroadCastData
Void BroadCastData(System.Object, System.IO.Stream)

Can't enable LinqBridge

LinqPad was installed in the default location (C:\Program Files (x86)\LINQPad4) and after installing LinqBridge the menu options to Enable/Disable remain greyed out.

Could not load DotNetDynamicVisualizerType or one of its dependencies

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.RemoteObjectSourceException: Could not load file or assembly 'file:///C:\Users\jxb15\Documents\Visual Studio 2013\Visualizers\DotNetDynamicVisualizerType.V12.0.dll' or one of its dependencies. Access is denied. ---> System.IO.FileLoadException: Could not load file or assembly 'file:///C:\Users\jxb15\Documents\Visual Studio 2013\Visualizers\DotNetDynamicVisualizerType.V12.0.dll' or one of its dependencies. Access is denied.
at System.Reflection.RuntimeAssembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
at System.Reflection.RuntimeAssembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, RuntimeAssembly locationHint, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
at System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(AssemblyName assemblyRef, Evidence assemblySecurity, RuntimeAssembly reqAssembly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean throwOnFileNotFound, Boolean forIntrospection, Boolean suppressSecurityChecks)
at System.Reflection.RuntimeAssembly.InternalLoadFrom(String assemblyFile, Evidence securityEvidence, Byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm, Boolean forIntrospection, Boolean suppressSecurityChecks, StackCrawlMark& stackMark)
at System.Reflection.Assembly.LoadFrom(String assemblyFile)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ClassAndAssemblySpec.CreateAssembly(Dictionary2 dictionary, AbstractAssemblyResolver resolver) at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ClassAndAssemblySpec.CreateInstanceOrType(Dictionary2 dictionary, AbstractAssemblyResolver resolver, InstanceOrType instOrType)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ClassAndAssemblySpec.CreateInstance(Dictionary`2 dictionary, AbstractAssemblyResolver resolver)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.DebugeeHost.CreateSourceInternal(String assemblyNameOrLoc, Byte[] assemblyBytes, String className, Boolean isLoc)
--- End of inner exception stack trace ---
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.MaybeDeserializeAndThrowException(Byte[] data)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ManagedShim.DelegatedHost.CreateViewer(IntPtr hwnd, HostServicesHelper hsh, SafeProxyWrapper proxy)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18444 built by: FX451RTMGDR

CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll

Microsoft.VisualStudio.Platform.AppDomainManager
Assembly Version: 12.0.0.0
Win32 Version: 12.0.21005.1

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Platform.AppDomainManager/v4.0_12.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Platform.AppDomainManager.dll

System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34238 built by: FX452RTMGDR

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll

System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.34234 built by: FX452RTMGDR

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll

System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll

System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll

System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

Microsoft.VisualStudio.DebuggerVisualizers
Assembly Version: 12.0.0.0
Win32 Version: 12.0.21005.1

CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.DebuggerVisualizers/12.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.DebuggerVisualizers.dll

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

VS2013 uninstall problem

I uninstalled this extension, but VS keeps showing linqbridge visualizer...
What is even more annoying, it has removed or replaced all standard visualizers, even string variables are shown in linqpad, there is no option anymore to show them in a plain textbox...

If I reinstall it, when choosing enable LinqBridge or disable LinqBridge , I get following error
image

I'm having the impression that it messed up my vs2013 installation

AssemblyResolutionException: Failed to resolve assembly: 'netstandard'

This is one of many assembly resolution exception errors. A warning message should be showed in case LINQBridgeVs is used with netstandard, asp.net core, .net core and other unsupported projects

Sentry Issue: LINQBRIDGEVS-J

AssemblyResolutionException: Failed to resolve assembly: 'netstandard'
  Module "Mono.Cecil.BaseAssemblyResolver", line 116, in Resolve
    Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference, Mono.Cecil.ReaderParameters)
  Module "Mono.Cecil.DefaultAssemblyResolver", line 29, in Resolve
    Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference)
  Module "Mono.Cecil.MetadataResolver", line 56, in Resolve
    Mono.Cecil.TypeDefinition Resolve(Mono.Cecil.TypeReference)
  Module "Mono.Cecil.TypeReference", line 0, in Resolve
    Mono.Cecil.TypeDefinition Resolve()
  Module "Mono.Cecil.Mixin", line 0, in CheckedResolve
    Mono.Cecil.TypeDefinition CheckedResolve(Mono.Cecil.TypeReference)
...
(22 additional frame(s) were not displayed)

Error Executing MSBuild Task SInjectionBuildTask

Another known issue

This is probably obvious but may be worth adding to the known issues list in case it catches anyone else out, as it did me for a minute or two.

The magnifying glass will only be visible for public classes.

SymbolsNotMatchingException - Mono.Cecil crashes when mismatching symbols are found

I keep seeing this in the log file:

2018-07-10T14:50:58.5818167+01:00 Assembly being Injected C:\Development\CMSi\CMSi-Full\ams\AMS-MDI\bin\Debug\CMSI-MDI.exe
2018-07-10T14:50:59.0958376+01:00 Error Executing MSBuild Task SInjectionBuildTask -
SymbolsNotMatchingException: Symbols were found but are not matching the assembly
at Mono.Cecil.ModuleDefinition.ReadSymbols(ISymbolReader reader, Boolean throwIfSymbolsAreNotMaching)
at Mono.Cecil.ModuleReader.ReadSymbols(ModuleDefinition module, ReaderParameters parameters)
at Mono.Cecil.ModuleReader.CreateModule(Image image, ReaderParameters parameters)
at Mono.Cecil.ModuleDefinition.ReadModule(String fileName, ReaderParameters parameters)
at BridgeVs.Build.SInjection..ctor(String assemblyLocation, String snkCertificatePath, PatchMode mode)
at BridgeVs.Build.Tasks.SInjectionBuildTask.Execute()

No visualizers are output

UnauthorizedAccessException: Access to the path 'C:\ProgramData\Grapple\LINQBridgeVsTruck\SqlException' is denied.

Sentry Issue: LINQBRIDGEVS-B

UnauthorizedAccessException: Access to the path 'C:\ProgramData\Grapple\LINQBridgeVsTruck\SqlException' is denied.
  Module "BridgeVs.Grapple.Truck", line 184, in DeliverTo
    Boolean DeliverTo(System.String)
  Module "BridgeVs.DynamicVisualizers.DynamicObjectSource", line 362, in BroadCastData
    Void BroadCastData(System.Object, System.IO.Stream)

Error broadcasting the data to linqpad

Are anonymous types supported when used inside a list?

In trying to display a list with items made from an anonymous type the code in LinqPAD could not be compiled and complained about a possible missing reference.

Part of the generated code:
truck.UnLoadCargo<List<AnonymousType<Guid, String ......

Move LINQPadInstallationPath and LINQPadVersion to specific visual studio version subkey

LINQPadInstallationPath and LINQPadVersion are two registry values that store the installation information of linqpad.

Currently they represent global settings for the extensions which means having the extension installed on multiple visual studio versions on the same machine will share the same setting.

It would be better to move those two values from HKEY_CURRENT_USER\Software\LINQBridgeVs to HKEY_CURRENT_USER\Software\LINQBridgeVs{VsVersion} in order to make the linqpad installation configuration local to the visual studio version

vsregistryopt

Improve building times

Currently ILMerge is used to combine all the dlls generated at compile time for the custom debugger visualizer. This process is very slow, and should probably be avoided. Remove ILMerge from the build process.

2017 version

When will the 2017 version show up in the marketplace? I was notified a week ago that it was submitted.
Is there a way we can build it ourselves? I built the solution but there was no vsix file produced.

linq generated file

correct the full name of the library on the file name
remove mscorlib reference

Linqpad starts but does not display anything

I have been using linqbridgevs for sometime now and have grown dependent on it, so if you can help....
I just got a new machine, installed all appropriate software, and everything was working fine including linqbridge.
Under direction I remapped my MyDocuments folder to one-drive enterprise and since then when I attempt to use linqbridge I get nothing. I click on the little magnifying glass, Linqpad starts and then nothing but a blank page.
I have remapped my documents folder back to its original location and reinstalled everything except Visual Studio but still no results. If I have to I will reinstall Visual Studio 2013 but would rather not as I don't need a half day down time.
I have helped many coworkers get this tool installed and working while mine remains broken (I know I must be a saint).
I run as admin and have full control over my visualizer directory. Google tells me that I am the only one in the world with this problem and am quite frustrated.
-TIA

Throws exception when magnifying glass is clicked

LinqBridge throws the following exception on clicking the magnifying glass then fails to launch viewer
this does not occur every time but very often it does

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.Exception: Function evaluation timed out.
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.MaybeDeserializeAndThrowException(Byte[] data)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.WriteDataToStreamAndThrowOnException(Byte[] data, Stream dataStream)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.WriteDataToStreamAndThrowOnException(Byte[] data)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.PrivateCallback.Microsoft.VisualStudio.DebuggerVisualizers.IVisualizerObjectProvider.GetData()
at LINQBridgeVs.DynamicVisualizer.V11.DynamicDebuggerVisualizerV11.Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
at Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.ManagedShim.DelegatedHost.CreateViewer(IntPtr hwnd, HostServicesHelper hsh, SafeProxyWrapper proxy)

************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18449 built by: FX451RTMGDR

CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll

Microsoft.VisualStudio.Platform.AppDomainManager
Assembly Version: 11.0.0.0
Win32 Version: 11.0.50727.1

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualStudio.Platform.AppDomainManager/v4.0_11.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.Platform.AppDomainManager.dll

System
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll

System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll

System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll

System.Data.SqlXml
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Data.SqlXml/v4.0_4.0.0.0__b77a5c561934e089/System.Data.SqlXml.dll

System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll

System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.0.30319.18408 built by: FX451RTMGREL

CodeBase: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll

Microsoft.VisualStudio.DebuggerVisualizers
Assembly Version: 11.0.0.0
Win32 Version: 11.0.50727.1

CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualStudio.DebuggerVisualizers/11.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualStudio.DebuggerVisualizers.dll

DotNetDynamicVisualizerType.V11.0
Assembly Version: 1.0.5235.17029
Win32 Version: 1.0.0.0

CodeBase: file:///C:/Users/colm.oconnell/Documents/Visual%20Studio%202012/Visualizers/DotNetDynamicVisualizerType.V11.0.dll

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

Can't find LINQPad

If you install LINQPad on another path that the default one, LINQBridgeVs cannot find it.

Can't find the magnifying glass

i have it installed, i can enable it for my project, and verify thats the case by what is allowed/greyed out in the linqbridge menu, compile, breakpoint, but i can never see this magnifying glass. I'm not sure whether its a conflict with other tools i have like reshaper. I'm on vs.net 2013. Is there a way to do invoke via a menu, right click, or hot key?

Implement a lightweight and fast logger

It would be nice to implement a better logging system like NLog than BridgeVs.Logging, which is the current implementation. This logger is used for debug builds only, but it would be ideal to be able to enable/disable logging with the live extension.

This doesn't do anything

I'm confused... the extension does nothing because both the Enable and Disable options are disabled. LINQPad is installed to its default path, it is the Pro version, and I'm using VS2013 SP4. I've tried and get the same results on 2 different computers however both are Win7 x64 if that makes a difference. What do I need to do or look at to get this working? Thanks!

Can't use with portable LINQPad

I have always used the portable version of LINQPad rather than the installed version. I seems that I am forced to use the installed version for LINQBridgeVs as each time I open VS I'm told to install LINQPad. Any chance you can make it work with portable LINQPad?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.