background preloader

VS.Net/Tooling

Facebook Twitter

Cheat Sheet. Download cheat sheet as printable PDF A5 Syntax Child: > nav>ul>li Sibling: + div+p+bq Climb-up: ^ div+div>p>span+em^bq div+div>p>span+em^^bq Grouping: () div>(header>ul>li*2>a)+footer>p (div>dl>(dt+dd)*3)+footer>p Multiplication: * ul>li*5 Item numbering: $ ul>li.item$*5 h$[title=item$]{Header $}*3 <h1 title="item1">Header 1</h1><h2 title="item2">Header 2</h2><h3 title="item3">Header 3</h3> ul>li.item$$$*5 ul>li.item$@-*5 ul>li.item$@3*5 ID and CLASS attributes #header .title form#search.wide p.class1.class2.class3 Custom attributes p[title="Hello world"] td[rowspan=2 colspan=3 title] [a='value1' b="value2"] Text: {} a{Click me} <a href="">Click me</a> p>{Click }+a{here}+{ to continue} <p>Click <a href="">here</a> to continue</p> Implicit tag names .class em>.class ul>.class table>.row>.col All unknown abbreviations will be transformed to tag, e.g. foo → <foo></foo>.

Alias of html:5 <! A a:link a:mail abbr acronym, acr base basefont br frame hr bdo bdo:r bdo:l col link link:css link:print link:favicon link:touch link:rss link:atom meta meta:utf img c. Create a Custom Code Snippet In Visual Studio 2015. In this article, we will look into steps to be followed for creating and registering a custom code snippet for C# in VS 2015. In this article, we will look into steps to be followed for creating and registering a custom code snippet for C# in Visual Studio 2015.

Code snippets are helpful for distributing and re-using code. It saves time in writing repetitive code. All we need is to create an XML file with all details for creating a custom code snippet. Let's create the following XML code and name it AddClass-Snippet.snippet: In the header section, we will set attributes like Title, Author etc. In Reference section, we can add reference to assemblies and namespaces to be included. In Declarations section, we can declare literals or objects that need to be replaced within snippet and the same can be referred in the snippet using $name$.

Under Code section, we can mention Language and add code within CData as shown below: Here's the complete code: <? Read more articles on Visual Studio: Responsinator. Electric Plum - Power for the Mobile Web. iPhone, iPad, and Responsive Simulators for just $39.99 - Take the Full Product for a FREE 7 Day Trial Our free 7 day trial lets you take the entire feature set for test-drive. Upon purchasing a license you are granted 2 transferable, concurrent activations allowing for use of the product on 2 computers to support common home/work and laptop/desktop scenarios.

Download Electric Mobile Studio for Windows - FREE 7 Day Trial Buy Electric Mobile Studio Now - $39.99 Microsoft Visual Studio 2012,2013 and 2015 Integration Electric Mobile Studio automatically detects VS 2012-2015 and optionally allows for direct integration to the "Browse With... " menu. Multi Instance iPhone and iPad Web Simulation for Windows with Group Control Control multiple instances with unique configurations, conditionally hide to reduce clutter. Responsive Design Tools For Hyper-Productive Design, Prototyping and Testing A Powerful Command Pallette is Just a Click Away Location, Location, Location Play Favorites. Web development - Visual Studio | Web. Of the thousands of extensions for Visual Studio, here is a collection of some that adds a lot of value to web developers specifically.

Web Essentials This is a must-have extension for any web developer. It's where the Visual Studio web team adds new features first to get feedback before building them into Visual Studio. Image Optimizer Another must-have extension that takes the pain out of optimizing PNG, JPG and Gif images without compromising the quality of the image. Bundler & Minifier Adds support for bundling and minifying JavaScript, CSS and HTML files in any project. Web Compiler The easiest and most powerful way to compile LESS, Scss and CoffeeScript files directly within Visual Studio or through MSBuild. SideWaffle SideWaffle adds a bunch of useful snippets, project templates, and item templates to Visual Studio. Grunt Launcher PHP Tools PHP Tools focus on developer productivity while respecting conventions. Download PHP Tools Chutzpah unit test runner JSLint.NET Bootstrap Snippet Pack. A Complete List of Windows Development Tools @ Scott Ge.

I collect tools for Windows Development. The most popular and useful tools are highlighted. Please suggest any other tools in the ‘Comments’. Next week, I will post a separate article about ‘A Complete List of Web Development Tools’. I will also have an article about “Data Platform Tools” such as SQL Server Management Studio and Query Express. You can use chocolatey to quickly install most of the tools below. Chocolatey is a Machine Package Manager based on NuGet. It’s somewhat like apt-get in the Linux world. Windows SDK Visual Studio Tools & Plugins Visual Studio – Tools for every developer and every app.

Code/Text Editors Code Compare, Cleanup, Sharing and Source Control Tools AnkhSVN – Subversion Support for Visual StudioBeyond Compare – Compare files and folders using simple, powerful commands that focus on the differences you’re interested in and ignore those you’re not. .NET Tools GACView – GACView is an alternative to the standard .NET assembly viewer on Windows Explorer. Like this: VS Refactoring Essentials (formerly) NR6Pack - Free analyzers and refactoring for Visual Studio 2015. Grunt, NPM and Bower in Visual Studio! It’s awesome.. right? | Steves Coding Blog. The news that has come out of the Visual Studio team at VSConnect from the likes of Scott Guthrie (@scottgu), Scott Hanselman (@shanselman), Soma (@ssomasegar) and friends has been nothing short of blinding: Open-source .Net Framework?

Visual Studio 2015 and the new Community Edition? Asp.Net vNext? A strong focus on cross-platform mobile development? First-class support for Apache Cordova? Roslyn? C# Intellisense in text editors like Atom and Sublime? A whole host of other delights, improvements, products and features? Being a web applications developer through-and-through, I’ve been very interested in what is coming out of the Asp.Net team regarding the new vNext and MVC frameworks, and VS Connect didn’t disappoint in that area either. And it’s awesome! Edit: As Mads Kristensen points out in the comments below, for 2015 Preview you must have Gulp installed globally through NPM in order for the respective tooling to light up. All of this is music to my ears. A few things to note: Web Deployment through Visual Studio - WebTopics. This blog explains the 2 different ways of deploying the web application to the IIS server. We often come across the scenarios where in the application's web.config need to have different settings when it is deployed from one environment to the other (Example: From development to staging or production).

We can use either of the below technique to automate the process of changing web.config during deployment: Below is the list of a few settings which we tend to change while deploying application from one environment to the other: appSettings connectionStrings debug customErrors runAllManagedModulesForAllRequests Web.config tranformation: This technique specifies how the web.config file should be changed based on the specific build configurations: Debug Release Custom build configurations.

The web.config of the above build configuration makes use of the XML-Document-Transform namespace defines two attributes: Right Click on the Application in Visual Studio and click on Properties. Tags="" >