Jakob Christensen

- Total activity 118
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 45
-
Jakob Christensen created a post, Document Saved Event
HiHow do I subscribe to the DocumentSaved event, so I can run my code whenever a document is saved?I tried hooking into the standard Visual Studio events using:var dte = Shell.Instance.GetComponent... -
Jakob Christensen created a post, How do I save settings from an option dialog
HiHow do I save settings from an options dialog?The sample "Creating an Options Page" on the Plugin Developer pages simply do not work - the ReadFromXsl / WriteToXml methods are never called.Decomp... -
Jakob Christensen created a post, How to obtain a reference to the Visual Studio shell
HiHow do I obtain a reference to the Visual Studio shell in ReSharper 6.In Resharper 5, I could use:_DTE dte = IVsServiceProviderEx.Dte(VSShell.Instance.ServiceProvider);Thanks--Jakob -
Jakob Christensen created a post, Change template for Check Parameter for Null
Hi Is it possible to change the generated code for the Check Parameter for Null quick fix:From if (a == null){ throw new ArgumentNullException("a");} to Args.NotNull(a, "a"); --Jakob -
Jakob Christensen created a post, Feature Request: Integrate Pattern Catalogue with Code Clean up
HiIt would be nice, if Pattern Catalogue replacements could be run as part of Code Cleanup.--Jakob -
-
Jakob Christensen created a post, 4.5: Complete Statement
Is there any way to hook into the Complete Statement action?I would like to extend it.Thanks,--Jakob -
Jakob Christensen created a post, StyleCop Code Style
Hi allI have attached a Code Style settings file that is compatible with StyleCop.Unfortunately I cannot make Resharpers File Header feature work with the copyright notice requirement, so I have at... -
Jakob Christensen created a post, Community site
Hi everybodyDoes anybody know of a web site where we can share configuration files for Resharper:- Live Template Macros- Code Style files- File Templates... --Jakob -
Jakob Christensen created a post, Feature request: Change method signature using Ctrl+Alt+Shift+Arrow keys
I would be really nice, if using CtrlAltShift+Left/Right keys on a parameter in a method signature, could change the method signature without opening the dialog box.It works today by textually movi...