Skip to content

Commit

Permalink
Version bump and readme updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Jan 16, 2016
1 parent 067c211 commit 5bbd85f
Show file tree
Hide file tree
Showing 144 changed files with 158 additions and 160 deletions.
5 changes: 1 addition & 4 deletions ListingBuilder/Program.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml;

namespace ListingBuilder
Expand Down
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

[![Build status](https://ci.appveyor.com/api/projects/status/3o0b1ofu94xuqpsa?svg=true)](https://ci.appveyor.com/project/kspearrin/visual-studio-jquery-code-snippets)

I have updated the popular jQuery code snippets for use in Visual Studio 2012, 2013, and 2015. See a demo video on YouTube here: <http://www.youtube.com/watch?v=Escy0hbEkI8&hd=1>

Most of these snippets were originally developed by [John Sheehan](http://jquerysnippets.codeplex.com/) for Visual Studio 2010. Credit given where due.
This project hosts a collection of common jQuery code snippets for use in Visual Studio 2012, 2013, and 2015. See a demo video on YouTube here: <http://www.youtube.com/watch?v=Escy0hbEkI8&hd=1>.

## Installation

Expand All @@ -23,11 +21,10 @@ There are over 130 code snippets for jQuery included. Check out the [snippet lis

## Changelog

**v1.5.0**
- Added VS 2015 support. Thanks @madskristensen!
- Upgraded project files to VS 2013.
**v1.6.0**
- Added `jqOff`, `jqOffSel`, and `jqOnSel` snippets. Thanks @everettcaleb!
- Removed `type="text/javascript"` from all script tags in HTML snippets.
- Updated HTML snippet default library versions to latest.
- Added wrapping quotes to `jqWrap*` snippets.

[Previous Versions](https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets/wiki/Release-Notes)

Expand Down
3 changes: 3 additions & 0 deletions SnippetListing.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,14 @@
<tr><td>JavaScript</td><td>jqMouseOver</td><td>Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.</td></tr>
<tr><td>JavaScript</td><td>jqMouseUp</td><td>Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.</td></tr>
<tr><td>JavaScript</td><td>jqNamespace</td><td>A namespace template. ref: http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/</td></tr>
<tr><td>JavaScript</td><td>jqOff</td><td>Detach an event handler from one or more events on the selected elements.</td></tr>
<tr><td>JavaScript</td><td>jqOffSel</td><td>Detach an event handler from one or more events on the document with the specified selector.</td></tr>
<tr><td>JavaScript</td><td>jqOffsetGet</td><td>Get the current coordinates of the first element, or set the coordinates of every element, in the set of matched elements, relative to the document.</td></tr>
<tr><td>JavaScript</td><td>jqOffsetParent</td><td>Get the closest ancestor element that is positioned.</td></tr>
<tr><td>JavaScript</td><td>jqOn</td><td>Attach an event handler function for one or more events to the selected elements.</td></tr>
<tr><td>JavaScript</td><td>jqOne</td><td>Attach a handler to an event for the elements. The handler is executed at most once per element per event type.</td></tr>
<tr><td>JavaScript</td><td>jqOneWithData</td><td>Attach a handler to an event for the elements. The handler is executed at most once per element per event type.</td></tr>
<tr><td>JavaScript</td><td>jqOnSel</td><td>Attach an event handler function for one or more events to the document filtered by the selector.</td></tr>
<tr><td>JavaScript</td><td>jqOuterHeight</td><td>Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px") representation of the value or null if called on an empty set of elements.</td></tr>
<tr><td>JavaScript</td><td>jqOuterWidth</td><td>Get the current computed width for the first element in the set of matched elements, including padding and border.</td></tr>
<tr><td>JavaScript</td><td>jqPlugin</td><td>Plugin template.</td></tr>
Expand Down
2 changes: 1 addition & 1 deletion Tests/SnippetTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class SnippetTests
// --- CONFIGURATION ---
private const string SnippetPath = @"../../../jQueryCodeSnippets";
private const string HelpUrl = "https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets";
private const string Version = "1.5.0";
private const string Version = "1.6.0";
// --- END CONFIGURATION ---

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/HTML/jQuery/jq.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScript.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>path</ID>
<ToolTip>Path to jQuery script</ToolTip>
<Default>/scripts/jquery-1.9.0.min.js</Default>
<Default>/scripts/jquery-2.2.0.min.js</Default>
<Function>
</Function>
</Literal>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScriptCdnGoogle.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>version</ID>
<ToolTip>Library version number</ToolTip>
<Default>1.11.2</Default>
<Default>2.2.0</Default>
<Function>
</Function>
</Literal>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScriptCdnMs.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>version</ID>
<ToolTip>Library version number</ToolTip>
<Default>1.11.2</Default>
<Default>2.2.0</Default>
<Function>
</Function>
</Literal>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScriptMin.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>path</ID>
<ToolTip>Path to jQuery script</ToolTip>
<Default>/scripts/jquery-1.11.2.min.js</Default>
<Default>/scripts/jquery-2.2.0.min.js</Default>
<Function>
</Function>
</Literal>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScriptUiCdnGoogle.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>version</ID>
<ToolTip>Library version number</ToolTip>
<Default>1.11.3</Default>
<Default>1.11.4</Default>
<Function>
</Function>
</Literal>
Expand Down
4 changes: 2 additions & 2 deletions jQueryCodeSnippets/HTML/jQuery/jqScriptValidateCdnMs.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>version</ID>
<ToolTip>Library version number</ToolTip>
<Default>1.13.1</Default>
<Default>1.14.0</Default>
<Function>
</Function>
</Literal>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand All @@ -16,7 +16,7 @@
<Literal Editable="true">
<ID>version</ID>
<ToolTip>Library version number</ToolTip>
<Default>5.1</Default>
<Default>5.2.3</Default>
<Function>
</Function>
</Literal>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/func.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAfter.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAjax.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAppend.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAppendTo.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAttrGet.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAttrRemove.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAttrSet.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAttrSetFn.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqAttrSetObj.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqBefore.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqBind.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqBlur.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqChange.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqClassAdd.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqClassRemove.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqClassToggle.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqClick.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqClone.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqCssGet.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqCssSet.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
2 changes: 1 addition & 1 deletion jQueryCodeSnippets/JavaScript/jQuery/jqCssSetObj.snippet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.5.0">
<CodeSnippet Format="1.6.0">
<Header>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
Expand Down
Loading

0 comments on commit 5bbd85f

Please sign in to comment.