Skip to content

Commit

Permalink
build: remove vs2017 support
Browse files Browse the repository at this point in the history
  • Loading branch information
vchirikov committed Sep 16, 2020
1 parent 3e5114b commit b66bc8e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 30 deletions.
5 changes: 2 additions & 3 deletions src/GoToDnSpy/NetstandardTypeToAssemblyMapper.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

Expand Down Expand Up @@ -43,7 +42,7 @@ internal string Get(string typeNamespace, string typeName)
}


if(typeNamespace.StartsWith("System.Buffers", StringComparison.Ordinal))
if (typeNamespace.StartsWith("System.Buffers", StringComparison.Ordinal))
{
return "System.Memory";
}
Expand All @@ -64,7 +63,7 @@ internal string Get(string typeNamespace, string typeName)
if (result != null)
return result;
}
// good luck when

return typeNamespace.StartsWith("System", StringComparison.Ordinal) ? "System.Private.CoreLib" : null;

static string CheckNamespace(string ns)
Expand Down
2 changes: 1 addition & 1 deletion src/GoToDnSpy/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal sealed partial class Vsix
public const string Name = "GoToDnSpy";
public const string Description = @"Open dnSpy or source.dot.net and select method or type under caret.";
public const string Language = "en-US";
public const string Version = "1.1.3";
public const string Version = "1.1.4";
public const string Author = "Vladimir Chirikov";
public const string Tags = "GoToDnSpy, GoTo, Disasm, ILSpy, ILDisasm, Disassemble, CIL, IL, MSIL, dnSpy, de4dot, dnlib, decompile, Emit";
}
Expand Down
52 changes: 26 additions & 26 deletions src/GoToDnSpy/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="GoToDnSpy" Version="1.1.3" Language="en-US" Publisher="Vladimir Chirikov" />
<DisplayName>GoToDnSpy</DisplayName>
<Description xml:space="preserve">Open dnSpy or source.dot.net and select method or type under caret.</Description>
<MoreInfo>/~https://github.com/vchirikov/GoToDnSpy</MoreInfo>
<License>LICENSE</License>
<GettingStartedGuide>Readme.md</GettingStartedGuide>
<ReleaseNotes>CHANGELOG.md</ReleaseNotes>
<Icon>icon.ico</Icon>
<PreviewImage>preview.png</PreviewImage>
<Tags>GoToDnSpy, GoTo, Disasm, ILSpy, ILDisasm, Disassemble, CIL, IL, MSIL, dnSpy, de4dot, dnlib, decompile, Emit</Tags>
</Metadata>
<Installation>
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Community" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
</Installation>
<Metadata>
<Identity Id="GoToDnSpy" Version="1.1.4" Language="en-US" Publisher="Vladimir Chirikov" />
<DisplayName>GoToDnSpy</DisplayName>
<Description xml:space="preserve">Open dnSpy or source.dot.net and select method or type under caret.</Description>
<MoreInfo>/~https://github.com/vchirikov/GoToDnSpy</MoreInfo>
<License>LICENSE</License>
<GettingStartedGuide>Readme.md</GettingStartedGuide>
<ReleaseNotes>CHANGELOG.md</ReleaseNotes>
<Icon>icon.ico</Icon>
<PreviewImage>preview.png</PreviewImage>
<Tags>GoToDnSpy, GoTo, Disasm, ILSpy, ILDisasm, Disassemble, CIL, IL, MSIL, dnSpy, de4dot, dnlib, decompile, Emit</Tags>
</Metadata>
<Installation>
<InstallationTarget Version="[16.5,17.0)" Id="Microsoft.VisualStudio.Community" />
<InstallationTarget Version="[16.5,17.0)" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[16.5,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
</Installation>

<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7,)" />
</Dependencies>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.7,)" />
</Dependencies>

<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.3, )" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[16.3, )" DisplayName="Visual Studio core editor" />
</Prerequisites>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
</PackageManifest>

0 comments on commit b66bc8e

Please sign in to comment.