Salient Solutions

wrasslin ones and nones for fun and profit - Sky Sanders' Blog
Get your own ranked flair here
posts - 88, comments - 54, trackbacks - 0

Visual Studio

There are 7 entries for the tag Visual Studio
Visual Studio 2008 Productivity Tools: CodeRush/Refactor and Resharper finally play nice together

  UPDATE: I just found this - http://code.google.com/p/dxcorecommunityplugins/wiki/CR_ReSharperCompatibility Will report when testing completed. --------------------   This is how I configure CodeRush/Refactor Pro and Resharper  to enable peaceful coexistance. Even as the feature sets of CR/RF and R# are steadily converging it seems to me that each product has a definite and divergent gestalt.  While evaluation of features is a subjective matter,  having the option to use both tools concurrently, choosing the features that make sense to the individual seems to be a win/win situation. In the not-so-distant past this has been a proposition that involved much fine tuning and a bit of uncertaintly that left all but the most...

posted @ Monday, March 22, 2010 4:20 AM | Feedback (0) |

jQuery ajax settings object for VS Intellisense

// an empty object with xmldocs for assistance in creating ajax settings var ajaxSettings = function() { /// <summary>A set of key/value pairs that configure the Ajax request. All options are optional. /// A default can be set for any option with $.ajaxSetup().</summary> /// <field name="async" type="Boolean">Default: true /// By default, all requests are sent asynchronous (i.e. this is set to true by default). If you /// need synchronous requests, set this option to false. Note that synchronous requests may temporarily /// lock...

posted @ Tuesday, February 23, 2010 2:50 PM | Feedback (0) |

Visual Studio JavaScript Intellisense Revisited

Or: “What I hope is not just ‘Yet Another Visual Studio JavaScript Intellisense Walkthrough’”. Author note: If this content seems dated, it is. When I started this blog last year I began by resurrecting a monster javascript documentation project that had been dormant for a year. Then I got busy and dropped it again. So here I am picking it back up again to provide some motivation for actually finishing a POJO documentation generator using xml doc comments and SCHB. While VS JScript Intellisense is nothing new I think that there are topics covered that I have not seen in other...

posted @ Monday, February 22, 2010 9:41 AM | Feedback (12) |

Visual Studio 2008 Build Event XCopy Bug

Wondering why your post-build xcopy not working? From Microsoft Connect Thanks for reporting this bug. Unfortunately, after much investigation, we (MSBuild team) discovered that this is actually a documented bug in xcopy.exe. The owners of xcopy.exe claim that this bug is not worth fixing, and so there's not much we can do at this point. However, the good news is that there is a fairly simple (though completely non-intuitive and non-discoverable workaround), and that is to append "<NUL:" to the end of your xcopy command. So, in your case, just do this:     xcopy "$(TargetDir)*.*" "$(SolutionDir)..\bin\" /S /I /F <NUL: and that should work for you. If...

posted @ Saturday, September 05, 2009 4:51 AM | Feedback (1) | Filed Under [ CodeProject-Tip ]

JsUnitTest-VS

I have forked JsUnitTest over at github into JsUnitTest-VS in the interest of creating a Visual Studio 2008 friendly JavaScript unit testing framework. The fork, new name and versioning are prompted by the fact that the infrastructure of the project is php/ruby oriented. I am not only NOT really inclined to switch my development paradigm to PHP/RUBY to work on a library that is intended for Visual Studio, I have identified various areas in which I intend to make fairly significant changes to the feature set. Reconciliation can be considered at a later date. That said, I intend to maintain full API compatibility to keep...

posted @ Thursday, August 20, 2009 10:58 AM | Feedback (0) |

A Better JavaScript Generic Type Implementation

download source code download this article in .doc format. Overview In a recent article I presented a simple implementation of a generic type system in JavaScript. Please see that document for a detailed enumeration of the motivations and benefits, including type safetly and Visual Studio intellisense support. In this document I will present a 'better' implementation that eliminates many of the limitations of my 'simple' generic type implementation. I will also provide a starter library of generic compatible collections including Queue, ListArray and Dictionary that you may use immediately and that can serve as a reference for implementing your own generic types in JavaScript. Features: ...

posted @ Wednesday, August 19, 2009 5:40 PM | Feedback (1) |

Javascript enum creation pattern with Visual Studio intellisense support

visual studio javascript intellisense friendly // enum creation pattern // NOTE: i am not doing the intensive argument validation // and restricting the enum values to integer as is done in // msajax so you can probably break this with little effort. function createEnum(type, flags) { for (var i in type.prototype) { type[i] = type.prototype[i]; } // __xxx props are msajax/vs talking to each other type.__enum = true; type.__flags = flags; } intEnum = function() { /// <summary> ...

posted @ Wednesday, July 29, 2009 3:54 AM | Feedback (0) | Filed Under [ CodeProject-Tip ]

Powered by: