Skip to content

Commit 2c8fb71

Browse files
Bart KoelmanBart Koelman
authored andcommitted
Solution upgrade to VS 2017
1 parent 824deb8 commit 2c8fb71

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

src/CSharpGuidelinesAnalyzer.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.4
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSharpGuidelinesAnalyzer.Vsix", "CSharpGuidelinesAnalyzer\CSharpGuidelinesAnalyzer.Vsix\CSharpGuidelinesAnalyzer.Vsix.csproj", "{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}"
77
EndProject
@@ -15,6 +15,10 @@ Global
1515
Release|Any CPU = Release|Any CPU
1616
EndGlobalSection
1717
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Release|Any CPU.Build.0 = Release|Any CPU
1822
{560612BD-75DC-40B3-A070-A913B925B60F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1923
{560612BD-75DC-40B3-A070-A913B925B60F}.Debug|Any CPU.Build.0 = Debug|Any CPU
2024
{560612BD-75DC-40B3-A070-A913B925B60F}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -23,10 +27,6 @@ Global
2327
{E3AFF0DD-B4CB-4054-BBB1-1F240B5803DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
2428
{E3AFF0DD-B4CB-4054-BBB1-1F240B5803DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
2529
{E3AFF0DD-B4CB-4054-BBB1-1F240B5803DC}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{CBD344C6-15E1-4337-AC0A-49E72D7B31C2}.Release|Any CPU.Build.0 = Release|Any CPU
3030
EndGlobalSection
3131
GlobalSection(SolutionProperties) = preSolution
3232
HideSolutionNode = FALSE

src/CSharpGuidelinesAnalyzer/CSharpGuidelinesAnalyzer.Vsix/CSharpGuidelinesAnalyzer.Vsix.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
4+
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
55
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
66
</PropertyGroup>
77
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
@@ -78,11 +78,7 @@
7878
</Target>
7979
<Target Name="UpdateVsixVersion" AfterTargets="GetSemanticVersionFromOutputAssembly;CopyVsixManifestFile" BeforeTargets="AfterBuild">
8080
<Message Text="Updating VSIX version to $(SemanticVersion)" Importance="High" />
81-
<XmlPoke
82-
XmlInputPath="source.extension.vsixmanifest"
83-
Query="/n:PackageManifest/n:Metadata/n:Identity/@Version"
84-
Value="$(SemanticVersion)"
85-
Namespaces="&lt;Namespace Prefix='n' Uri='http://schemas.microsoft.com/developer/vsx-schema/2011' Name='DoNotKnowWhatThisIsFor-ButItIsRequired' /&gt;">
81+
<XmlPoke XmlInputPath="source.extension.vsixmanifest" Query="/n:PackageManifest/n:Metadata/n:Identity/@Version" Value="$(SemanticVersion)" Namespaces="&lt;Namespace Prefix='n' Uri='http://schemas.microsoft.com/developer/vsx-schema/2011' Name='DoNotKnowWhatThisIsFor-ButItIsRequired' /&gt;">
8682
</XmlPoke>
8783
</Target>
8884
<Target Name="ExcludeFilesFromVSIX" BeforeTargets="CreateVsixContainer" AfterTargets="GetVsixSourceItems">

0 commit comments

Comments
 (0)