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
Showing
4 changed files
with
16 additions
and
4 deletions
... | @@ -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 | ... | ... |
... | @@ -105,7 +105,7 @@ namespace WebTest.WebServive.Plugin | ... | @@ -105,7 +105,7 @@ namespace WebTest.WebServive.Plugin |
105 | base.Dispose(disposing); | 105 | base.Dispose(disposing); |
106 | } | 106 | } |
107 | 107 | ||
108 | bool checkSetup() | 108 | bool checkSetup() |
109 | { | 109 | { |
110 | RegistryKey rk = Registry.CurrentUser.OpenSubKey("SOFTWARE\\WebServicePlugin"); | 110 | RegistryKey rk = Registry.CurrentUser.OpenSubKey("SOFTWARE\\WebServicePlugin"); |
111 | bool installOK = false; | 111 | bool installOK = false; |
... | @@ -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> | ... | ... |
-
Please register or sign in to post a comment