Skip to content

Commit 915542e

Browse files
committed
Release version 1.4.2 - Added support for VS 2013.
1 parent d92970a commit 915542e

File tree

5 files changed

+53
-23
lines changed

5 files changed

+53
-23
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Regex Tester
22
============
3-
This extension added (contains) tool for testing regular expressions in Visual Studio 2010, 2012.
3+
This extension added (contains) tool for testing regular expressions in Visual Studio 2010, 2012 and 2013.
44

55
Tool simple and easy to use, the processing occurs in a background thread.
66

RegexTester/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
// You can specify all the values or you can default the Revision and Build Numbers
2929
// by using the '*' as shown below:
3030

31-
[assembly: AssemblyVersion("1.4.1.0")]
32-
[assembly: AssemblyFileVersion("1.4.1.0")]
31+
[assembly: AssemblyVersion("1.4.2.0")]
32+
[assembly: AssemblyFileVersion("1.4.2.0")]
3333

3434

3535

RegexTester/RegexTester.csproj

+42-17
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
33
<PropertyGroup>
44
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
66
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
7+
<PublishUrl>publish\</PublishUrl>
8+
<Install>true</Install>
9+
<InstallFrom>Disk</InstallFrom>
10+
<UpdateEnabled>false</UpdateEnabled>
11+
<UpdateMode>Foreground</UpdateMode>
12+
<UpdateInterval>7</UpdateInterval>
13+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
14+
<UpdatePeriodically>false</UpdatePeriodically>
15+
<UpdateRequired>false</UpdateRequired>
16+
<MapFileExtensions>true</MapFileExtensions>
17+
<ApplicationRevision>0</ApplicationRevision>
18+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
19+
<UseApplicationTrust>false</UseApplicationTrust>
20+
<BootstrapperEnabled>true</BootstrapperEnabled>
721
</PropertyGroup>
822
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
923
<PropertyGroup>
@@ -19,28 +33,14 @@
1933
<SignAssembly>True</SignAssembly>
2034
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
2135
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
22-
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
36+
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
2337
<FileUpgradeFlags>
2438
</FileUpgradeFlags>
2539
<UpgradeBackupLocation>
2640
</UpgradeBackupLocation>
2741
<OldToolsVersion>4.0</OldToolsVersion>
2842
<TargetFrameworkProfile />
29-
<PublishUrl>publish\</PublishUrl>
30-
<Install>true</Install>
31-
<InstallFrom>Disk</InstallFrom>
32-
<UpdateEnabled>false</UpdateEnabled>
33-
<UpdateMode>Foreground</UpdateMode>
34-
<UpdateInterval>7</UpdateInterval>
35-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
36-
<UpdatePeriodically>false</UpdatePeriodically>
37-
<UpdateRequired>false</UpdateRequired>
38-
<MapFileExtensions>true</MapFileExtensions>
39-
<ApplicationRevision>0</ApplicationRevision>
40-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
4143
<IsWebBootstrapper>false</IsWebBootstrapper>
42-
<UseApplicationTrust>false</UseApplicationTrust>
43-
<BootstrapperEnabled>true</BootstrapperEnabled>
4444
</PropertyGroup>
4545
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
4646
<DebugSymbols>true</DebugSymbols>
@@ -227,15 +227,40 @@
227227
<Generator>MSBuild:Compile</Generator>
228228
<Generator>MSBuild:Compile</Generator>
229229
<SubType>Designer</SubType>
230+
<Generator>MSBuild:Compile</Generator>
231+
<SubType>Designer</SubType>
230232
</Page>
231233
<Page Include="UserControls\RegexTesterPage.xaml">
232234
<SubType>Designer</SubType>
233235
<Generator>MSBuild:Compile</Generator>
234236
<Generator>MSBuild:Compile</Generator>
235237
<SubType>Designer</SubType>
238+
<Generator>MSBuild:Compile</Generator>
239+
<SubType>Designer</SubType>
236240
</Page>
237241
</ItemGroup>
238-
<ItemGroup />
242+
<ItemGroup>
243+
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
244+
<Visible>False</Visible>
245+
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
246+
<Install>true</Install>
247+
</BootstrapperPackage>
248+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
249+
<Visible>False</Visible>
250+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
251+
<Install>false</Install>
252+
</BootstrapperPackage>
253+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
254+
<Visible>False</Visible>
255+
<ProductName>.NET Framework 3.5 SP1</ProductName>
256+
<Install>false</Install>
257+
</BootstrapperPackage>
258+
<BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
259+
<Visible>False</Visible>
260+
<ProductName>Windows Installer 4.5</ProductName>
261+
<Install>true</Install>
262+
</BootstrapperPackage>
263+
</ItemGroup>
239264
<PropertyGroup>
240265
<UseCodebase>true</UseCodebase>
241266
</PropertyGroup>

RegexTester/Resources/Resources.Designer.cs

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RegexTester/source.extension.vsixmanifest

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<Identifier Id="dcad2d98-1e91-4090-81a0-ec0641347bf8">
44
<Name>Regex Tester</Name>
55
<Author>Roman Kurbangaliyev</Author>
6-
<Version>1.4.1</Version>
7-
<Description xml:space="preserve">Regular expression tester for Visual Studio 2010, 2012.</Description>
6+
<Version>1.4.2</Version>
7+
<Description xml:space="preserve">Regular expression tester for Visual Studio 2010, 2012 and 2013.</Description>
88
<Locale>1033</Locale>
99
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/16b9d664-d88c-460e-84a5-700ab40ba452</MoreInfoUrl>
1010
<License>license.txt</License>
@@ -22,6 +22,11 @@
2222
<Edition>Premium</Edition>
2323
<Edition>Pro</Edition>
2424
</VisualStudio>
25+
<VisualStudio Version="12.0">
26+
<Edition>Ultimate</Edition>
27+
<Edition>Premium</Edition>
28+
<Edition>Pro</Edition>
29+
</VisualStudio>
2530
</SupportedProducts>
2631
<SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.5" />
2732
</Identifier>

0 commit comments

Comments
 (0)