Skip to content

Commit 6894224

Browse files
committed
Upgraded project files to VS 2013. README updates for v1.5.
1 parent 2c1ad28 commit 6894224

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

README.md

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Visual Studio jQuery Code Snippets
22

3-
I have updated the popular jQuery code snippets for use in Visual Studio 2012 and 2013. See a demo video on YouTube here: http://www.youtube.com/watch?v=Escy0hbEkI8&hd=1
3+
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
44

5-
Most of these snippets were originally developed by John Sheehan (http://jquerysnippets.codeplex.com/) for Visual Studio 2010. Credit given where due.
5+
Most of these snippets were originally developed by [John Sheehan](http://jquerysnippets.codeplex.com/) for Visual Studio 2010. Credit given where due.
66

77
## Installation
88

9-
1. Open Visual Studio 2012/2013.
9+
1. Open Visual Studio 2012/2013/2015.
1010
2. Navigate to **Tools** > **Extensions and Updates**.
1111
3. Search **Online** for "jquery code snippets".
1212
4. Select the "jQuery Code Snippets" extension and click **Install**.
@@ -17,24 +17,16 @@ You can also download and install the extension from the [Visual Studio Gallery]
1717

1818
## Snippet Listing
1919

20-
There are over 130 code snippets for jQuery included. You can view a listing of all of these snippets on the project wiki here: https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets/wiki/Snippet-Listing
20+
There are over 130 code snippets for jQuery included. Check out the [snippet listing](https://github.com/kspearrin/Visual-Studio-jQuery-Code-Snippets/wiki/Snippet-Listing).
2121

2222
## Changelog
2323

24-
**v1.4**
25-
- Updated all snippets to have helpful descriptions and tooltips from latest jQuery docs
26-
- More uniform formatting and spacing throughout snippets
27-
- Added `jqMap` and `jqEach` (thanks @grahampcharles), `jqDataSetObj`, `jqOn`, `jqSlideToggle`, `jqSlideToggleFull`
28-
- Renamed `jqClassToggleFn` -> `jqClassToggleSwitch`, `jqToggleVis*` -> `jqToggle*`, `jqOffset` -> `jqOffsetGet`
29-
- Removed `jqLive`, `jqToggleMore`, `jqUnbindFn`
30-
- Various other code cleanup and bug fixes with snippets
24+
**v1.5**
25+
- Added VS 2015 support. Thanks @madskristensen!
26+
- Upgraded project files to VS 2013.
3127

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

3430
## Contributing
3531

3632
Please feel free to submit pull requests to the `dev` branch.
37-
38-
## TODO
39-
40-
- Add missing jQuery snippets (most of these were all created based on an old jQuery build back in the day).

jQueryCodeSnippets/jQueryCodeSnippets.csproj

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
4+
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
66
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
77
<StartAction>Program</StartAction>
88
<StartProgram>$(DevEnvDir)\devenv.exe</StartProgram>
99
<StartArguments>/rootsuffix Exp</StartArguments>
10+
<FileUpgradeFlags>
11+
</FileUpgradeFlags>
12+
<UpgradeBackupLocation>
13+
</UpgradeBackupLocation>
14+
<OldToolsVersion>4.0</OldToolsVersion>
1015
</PropertyGroup>
1116
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1217
<PropertyGroup>

0 commit comments

Comments
 (0)