Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.

Commit ea95cc2

Browse files
committed
Fix for #138
1 parent 6b9a344 commit ea95cc2

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CPPCheckPlugin/CPPCheckPlugin.csproj

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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>
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
<FileUpgradeFlags>
@@ -47,6 +47,9 @@
4747
<Reference Include="Microsoft.CSharp" />
4848
<Reference Include="Microsoft.VisualStudio.OLE.Interop" />
4949
<Reference Include="Microsoft.VisualStudio.Shell.Interop" />
50+
<Reference Include="Microsoft.VisualStudio.Shell.Interop.12.0, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
51+
<EmbedInteropTypes>True</EmbedInteropTypes>
52+
</Reference>
5053
<Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0" />
5154
<Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0" />
5255
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0" />
@@ -140,7 +143,9 @@
140143
</EmbeddedResource>
141144
</ItemGroup>
142145
<ItemGroup>
143-
<None Include="app.config" />
146+
<None Include="app.config">
147+
<SubType>Designer</SubType>
148+
</None>
144149
<None Include="Properties\Settings.settings">
145150
<Generator>SettingsSingleFileGenerator</Generator>
146151
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -172,24 +177,34 @@
172177
<Page Include="CppcheckMessagesList.xaml">
173178
<SubType>Designer</SubType>
174179
<Generator>MSBuild:Compile</Generator>
180+
<Generator>MSBuild:Compile</Generator>
181+
<SubType>Designer</SubType>
175182
</Page>
176183
<Page Include="CppcheckSettings.xaml">
177184
<SubType>Designer</SubType>
178185
<Generator>MSBuild:Compile</Generator>
179186
<Generator>MSBuild:Compile</Generator>
180187
<SubType>Designer</SubType>
188+
<Generator>MSBuild:Compile</Generator>
189+
<SubType>Designer</SubType>
181190
</Page>
182191
<Page Include="MainToolWindowUI.xaml">
183192
<SubType>Designer</SubType>
184193
<Generator>MSBuild:Compile</Generator>
194+
<Generator>MSBuild:Compile</Generator>
195+
<SubType>Designer</SubType>
185196
</Page>
186197
<Page Include="SuppressionsSettingsUI\ItemsListEditor.xaml">
187198
<SubType>Designer</SubType>
188199
<Generator>MSBuild:Compile</Generator>
200+
<Generator>MSBuild:Compile</Generator>
201+
<SubType>Designer</SubType>
189202
</Page>
190203
<Page Include="SuppressionsSettingsUI\SuppressionsSettings.xaml">
191204
<SubType>Designer</SubType>
192205
<Generator>MSBuild:Compile</Generator>
206+
<Generator>MSBuild:Compile</Generator>
207+
<SubType>Designer</SubType>
193208
</Page>
194209
</ItemGroup>
195210
<PropertyGroup>

CPPCheckPlugin/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="127d8bd3-8cd7-491a-9a63-9b4e89118da9" Version="1.2.1" Language="en-US" Publisher="-" />
4+
<Identity Id="127d8bd3-8cd7-491a-9a63-9b4e89118da9" Version="1.3.1" Language="en-US" Publisher="-" />
55
<DisplayName>cppcheck add-in</DisplayName>
66
<Description xml:space="preserve">Integration for cppcheck - C/C++ code static analysis tool </Description>
77
<License>PackageInstallerLicense.txt</License>

0 commit comments

Comments
 (0)