You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LINQBridgeVs is a Visual Studio Extension compatible with Visual Studio 2012/2013/2015/2017.
10
-
It is a bridge between a Visual Studio debugging session and [LINQPad](http://www.linqpad.net). It creates at compile time, a Custom Debugger Visualizer making the magnifier glass available for all of the public classes and structs. By clicking on the magnifier glass on an object instance, this will be transmitted over a
10
+
It is a bridge between a Visual Studio debugging session and [LINQPad](http://www.linqpad.net). It creates, at compile time, a Custom Debugger Visualizer making the magnifier glass available for all of the public classes and structs. By clicking on the magnifier glass on an object instance, this will be transmitted over a
11
11
bus and 'Dumped' out by LINQPad.
12
12
<br><br>
13
13
## Getting Started
@@ -49,7 +49,7 @@ Only for the first time, Visual Studio must be run with Administrator privileges
49
49
50
50
Once Visual Studio is restarted as Administrator, the configuration will complete and the form will never appear again.
51
51
52
-
During this process two custom MsBuild Targets, [Custom.After.Microsoft.Common.targets](https://github.com/codingadventures/LINQBridgeVs/blob/master/Src/VsExtension/Targets/Custom.After.Microsoft.Common.targets) and [Custom.Before.Microsoft.Common.targets](https://github.com/codingadventures/LINQBridgeVs/blob/master/Src/VsExtension/Targets/Custom.Before.Microsoft.Common.targets), are needed to extend the MsBuild process. They are copied into specific Visual Studio version and edition's folder:
52
+
During this process two custom MsBuild Targets, [Custom.After.Microsoft.Common.targets](https://github.com/codingadventures/LINQBridgeVs/blob/master/Src/VsExtension/Targets/Custom.After.Microsoft.Common.targets) and [Custom.Before.Microsoft.Common.targets](https://github.com/codingadventures/LINQBridgeVs/blob/master/Src/VsExtension/Targets/Custom.Before.Microsoft.Common.targets), are needed to extend the MsBuild process. They are copied into a specific Visual Studio version and edition's folder:
53
53
* Visual Studio 2017 - C:\Program Files (x86)\Microsoft Visual Studio\2017\{Edition}\MSBuild\v15.0
54
54
* Visual Studio 2015 - C:\Program Files (x86)\MSBuild\v14.0
55
55
* Visual Studio 2013 - C:\Program Files (x86)\MSBuild\v12.0
@@ -82,7 +82,7 @@ When a solution is *Bridged*, every project in is essentially flagged. Configura
82
82
83
83
***Mapper Task** - This task creates a Custom Debugger Visualizer assembly for each project.
84
84
***SInjection Task** - SInjection stands for "Serializable Injection". This task reads the built assembly and marks every public class and struct as Serializable. It also ensures that any type is serializable using the [BinaryFormatter](https://msdn.microsoft.com/en-us/library/system.runtime.serialization.formatters.binary.binaryformatter(v=vs.110).aspx).
85
-
***Clean Task** - This task deletes the custom visualizers assemblies generated by the Mapper task.
85
+
***Clean Task** - This task deletes the Custom Debugger Visualizer assemblies generated by the Mapper task.
0 commit comments