Commit 36bbc293 36bbc2934357282ac0ab834526efb47dc5b11106 by Christian Gerdes

Changed version of VSIX to 1.1

Changed VSIX name bo VS version specific
Added Solution files
Updated CHANGELOG for 1.1
Changed install reg key name to VS version specific
1 parent afaae6d0
1 # WebService Plugins Changelog 1 # WebService Plugins Changelog
2 2
3 ## Version 1.1
4
5 - Bug fixes
6
3 ## Version 1.0 7 ## Version 1.0
4 8
5 First released version. Tested on VS2015 Enterprise. 9 First released version. Tested on VS2015 Enterprise.
......
...@@ -11,6 +11,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServicePluginForWebTestR ...@@ -11,6 +11,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServicePluginForWebTestR
11 EndProject 11 EndProject
12 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServicePluginForWebTestResultTabVSIX", "WebServicePluginForWebTestResultTabVSIX\WebServicePluginForWebTestResultTabVSIX.csproj", "{63355892-39EF-4F97-84E0-C7CA616E0281}" 12 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebServicePluginForWebTestResultTabVSIX", "WebServicePluginForWebTestResultTabVSIX\WebServicePluginForWebTestResultTabVSIX.csproj", "{63355892-39EF-4F97-84E0-C7CA616E0281}"
13 EndProject 13 EndProject
14 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{37CA11DD-EDCD-498B-98D0-F9D1A5C6EE67}"
15 ProjectSection(SolutionItems) = preProject
16 CHANGELOG = CHANGELOG
17 CONTRIBUTING.md = CONTRIBUTING.md
18 LICENSE = LICENSE
19 README.md = README.md
20 EndProjectSection
21 EndProject
14 Global 22 Global
15 GlobalSection(SolutionConfigurationPlatforms) = preSolution 23 GlobalSection(SolutionConfigurationPlatforms) = preSolution
16 Debug|Any CPU = Debug|Any CPU 24 Debug|Any CPU = Debug|Any CPU
......
...@@ -116,7 +116,7 @@ namespace WebTest.WebServive.Plugin ...@@ -116,7 +116,7 @@ namespace WebTest.WebServive.Plugin
116 } else 116 } else
117 { 117 {
118 // Registry key found, check if we are installed 118 // Registry key found, check if we are installed
119 Object regInstalled = rk.GetValue("INSTALLED"); 119 Object regInstalled = rk.GetValue("VS2015INSTALLED");
120 if (regInstalled != null) 120 if (regInstalled != null)
121 { 121 {
122 Int32 val = (Int32)regInstalled; 122 Int32 val = (Int32)regInstalled;
......
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011"> 2 <PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3 <Metadata> 3 <Metadata>
4 <Identity Id="WebServicePluginForWebTestResultTabVSIX.Christian Gerdes.9ce3c01b-c64c-4500-bd8e-1bedbc31100f" Version="1.0" Language="en-US" Publisher="Christian Gerdes" /> 4 <Identity Id="WebServicePluginForWebTestResultTabVSIX.Christian Gerdes.9ce3c01b-c64c-4500-bd8e-1bedbc31100f" Version="1.1" Language="en-US" Publisher="Christian Gerdes" />
5 <DisplayName>WebService Plugin For WebTest</DisplayName> 5 <DisplayName>WebService Plugin For VS2015 WebTest</DisplayName>
6 <Description xml:space="preserve">The WebService Plugin as a VSPackage. Based on the original CodePlex project.</Description> 6 <Description xml:space="preserve">The WebService Plugin as a VSPackage. Based on the original CodePlex project.</Description>
7 <MoreInfo>https://git.lightsinline.se/lilchger/WebServicePlugins</MoreInfo> 7 <MoreInfo>https://git.lightsinline.se/lilchger/WebServicePlugins</MoreInfo>
8 <License>License.rtf</License> 8 <License>License.rtf</License>
......