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

Commit a3b0897

Browse files
author
Bongho Lee
committed
Support VS2017
1 parent 8127ff3 commit a3b0897

File tree

5 files changed

+50
-50
lines changed

5 files changed

+50
-50
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ download in the
1212
These are the changes to each version that has been released
1313
on the official Visual Studio extension gallery.
1414

15+
## 1.1.0
16+
**2017-03-28**
17+
18+
- [x] Support Visual Studio 2017
19+
1520
## 1.0.11
1621
**2016-08-02**
1722

MonoRemoteDebugger.VSExtension/MonoRemoteDebugger.VSExtension.csproj

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
33
<PropertyGroup>
4-
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
4+
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
55
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
66
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
77
<SccProjectName>SAK</SccProjectName>
@@ -14,6 +14,8 @@
1414
<UpgradeBackupLocation>
1515
</UpgradeBackupLocation>
1616
<OldToolsVersion>12.0</OldToolsVersion>
17+
<IsWebBootstrapper>false</IsWebBootstrapper>
18+
<TargetFrameworkProfile />
1719
<PublishUrl>publish\</PublishUrl>
1820
<Install>true</Install>
1921
<InstallFrom>Disk</InstallFrom>
@@ -26,10 +28,8 @@
2628
<MapFileExtensions>true</MapFileExtensions>
2729
<ApplicationRevision>0</ApplicationRevision>
2830
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29-
<IsWebBootstrapper>false</IsWebBootstrapper>
3031
<UseApplicationTrust>false</UseApplicationTrust>
3132
<BootstrapperEnabled>true</BootstrapperEnabled>
32-
<TargetFrameworkProfile />
3333
</PropertyGroup>
3434
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
3535
<DebugSymbols>true</DebugSymbols>
@@ -64,7 +64,7 @@
6464
<SignAssembly>false</SignAssembly>
6565
<AssemblyOriginatorKeyFile>
6666
</AssemblyOriginatorKeyFile>
67-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
67+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
6868
</PropertyGroup>
6969
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
7070
<DebugSymbols>true</DebugSymbols>
@@ -87,7 +87,16 @@
8787
<RunCodeAnalysis>true</RunCodeAnalysis>
8888
</PropertyGroup>
8989
<ItemGroup>
90+
<Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
91+
<EmbedInteropTypes>False</EmbedInteropTypes>
92+
</Reference>
93+
<Reference Include="envdte80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
94+
<EmbedInteropTypes>False</EmbedInteropTypes>
95+
</Reference>
9096
<Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
97+
<Reference Include="Microsoft.VisualStudio.Shell.Framework, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
98+
<EmbedInteropTypes>False</EmbedInteropTypes>
99+
</Reference>
91100
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
92101
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
93102
<EmbedInteropTypes>True</EmbedInteropTypes>
@@ -123,26 +132,6 @@
123132
</Reference>
124133
<Reference Include="WindowsBase" />
125134
</ItemGroup>
126-
<ItemGroup>
127-
<COMReference Include="EnvDTE">
128-
<Guid>{80CC9F66-E7D8-4DDD-85B6-D9E6CD0E93E2}</Guid>
129-
<VersionMajor>8</VersionMajor>
130-
<VersionMinor>0</VersionMinor>
131-
<Lcid>0</Lcid>
132-
<WrapperTool>primary</WrapperTool>
133-
<Isolated>False</Isolated>
134-
<EmbedInteropTypes>False</EmbedInteropTypes>
135-
</COMReference>
136-
<COMReference Include="EnvDTE80">
137-
<Guid>{1A31287A-4D7D-413E-8E32-3B374931BD89}</Guid>
138-
<VersionMajor>8</VersionMajor>
139-
<VersionMinor>0</VersionMinor>
140-
<Lcid>0</Lcid>
141-
<WrapperTool>primary</WrapperTool>
142-
<Isolated>False</Isolated>
143-
<EmbedInteropTypes>False</EmbedInteropTypes>
144-
</COMReference>
145-
</ItemGroup>
146135
<ItemGroup>
147136
<Compile Include="..\AssemblyInfo.cs">
148137
<Link>Properties\AssemblyInfo.cs</Link>
@@ -170,7 +159,9 @@
170159
<Compile Include="Views\ServersFoundViewModel.cs" />
171160
</ItemGroup>
172161
<ItemGroup>
173-
<None Include="app.config" />
162+
<None Include="app.config">
163+
<SubType>Designer</SubType>
164+
</None>
174165
<None Include="packages.config" />
175166
<None Include="source.extension.vsixmanifest">
176167
<SubType>Designer</SubType>
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
<runtime>
4-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5-
<dependentAssembly>
6-
<assemblyIdentity name="System.Composition.AttributedModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
7-
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
8-
</dependentAssembly>
9-
<dependentAssembly>
10-
<assemblyIdentity name="System.Composition.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
11-
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
12-
</dependentAssembly>
13-
<dependentAssembly>
14-
<assemblyIdentity name="System.Composition.TypedParts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
15-
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
16-
</dependentAssembly>
17-
<dependentAssembly>
18-
<assemblyIdentity name="System.Composition.Hosting" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
19-
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
20-
</dependentAssembly>
21-
</assemblyBinding>
22-
</runtime>
23-
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="System.Composition.AttributedModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
7+
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
8+
</dependentAssembly>
9+
<dependentAssembly>
10+
<assemblyIdentity name="System.Composition.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
11+
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
12+
</dependentAssembly>
13+
<dependentAssembly>
14+
<assemblyIdentity name="System.Composition.TypedParts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
15+
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
16+
</dependentAssembly>
17+
<dependentAssembly>
18+
<assemblyIdentity name="System.Composition.Hosting" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
19+
<bindingRedirect oldVersion="0.0.0.0-1.0.30.0" newVersion="1.0.30.0"/>
20+
</dependentAssembly>
21+
</assemblyBinding>
22+
</runtime>
23+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup></configuration>

MonoRemoteDebugger.VSExtension/source.extension.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ------------------------------------------------------------------------------
22
// <auto-generated>
3-
// This file was generated by Extensibility Tools v1.8.175
3+
// This file was generated by Extensibility Tools v1.10.188
44
// </auto-generated>
55
// ------------------------------------------------------------------------------
66
namespace MonoRemoteDebugger.VSExtension
@@ -9,9 +9,9 @@ static class Vsix
99
{
1010
public const string Id = "27D183E9-5D2B-44D6-9EC8-2DB329096DF7";
1111
public const string Name = "MonoRemoteDebugger";
12-
public const string Description = "MonoRemoteDebugger";
12+
public const string Description = @"MonoRemoteDebugger";
1313
public const string Language = "en-US";
14-
public const string Version = "1.0.13";
14+
public const string Version = "1.1.0";
1515
public const string Author = "Techl.com";
1616
public const string Tags = "mono, debugger, remote";
1717
}

MonoRemoteDebugger.VSExtension/source.extension.vsixmanifest

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<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">
44
<Metadata>
5-
<Identity Id="27D183E9-5D2B-44D6-9EC8-2DB329096DF7" Version="1.0.12" Language="en-US" Publisher="Techl.com" />
5+
<Identity Id="27D183E9-5D2B-44D6-9EC8-2DB329096DF7" Version="1.1.0" Language="en-US" Publisher="Techl.com" />
66
<DisplayName>MonoRemoteDebugger</DisplayName>
77
<Description xml:space="preserve">MonoRemoteDebugger</Description>
88
<MoreInfo>https://github.com/techl/MonoRemoteDebugger</MoreInfo>
@@ -25,4 +25,8 @@
2525
<Assets>
2626
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
2727
</Assets>
28+
<Prerequisites>
29+
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic" />
30+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0.26208.0,16.0)" DisplayName="Visual Studio core editor" />
31+
</Prerequisites>
2832
</PackageManifest>

0 commit comments

Comments
 (0)