Skip to content

Commit 19f4993

Browse files
committed
Add support for Visual Studio 2019.
1 parent 5160609 commit 19f4993

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Graphical Debugging extension for Visual Studio 2013, 2015 and 2017
1+
# Graphical Debugging extension for Visual Studio 2013, 2015, 2017 and 2019
22

33
This extension allows to display graphical representation of variables during debugging.
44

@@ -31,7 +31,7 @@ You need Microsoft Visual Studio 2015 Update 3, .NET Framework 4.5.2 and Visual
3131

3232
To install after building double-click the *.vsix file from bin/Debug or bin/Relase directory.
3333

34-
This extension works with Visual Studio 2013, 2015 and 2017.
34+
This extension works with Visual Studio 2013, 2015, 2017 and 2019.
3535

3636
###### Use
3737

Visual_Studio_2015/GraphicalDebugging/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("Graphical Debugging")]
9-
[assembly: AssemblyDescription("Visual Studio 2013, 2015, 2017 Graphical Debugging Tools")]
9+
[assembly: AssemblyDescription("Visual Studio 2013, 2015, 2017, 2019 Graphical Debugging Tools")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("Graphical Debugging")]
@@ -29,5 +29,5 @@
2929
// You can specify all the values or you can default the Build and Revision Numbers
3030
// by using the '*' as shown below:
3131
// [assembly: AssemblyVersion("1.0.*")]
32-
[assembly: AssemblyVersion("0.20.0.0")]
33-
[assembly: AssemblyFileVersion("0.20.0.0")]
32+
[assembly: AssemblyVersion("0.21.0.0")]
33+
[assembly: AssemblyFileVersion("0.21.0.0")]

Visual_Studio_2015/GraphicalDebugging/release_notes.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
version 0.21
2+
3+
additions:
4+
- support for Visual Studio 2019
5+
16
version 0.20
27

38
additions:

Visual_Studio_2015/GraphicalDebugging/source.extension.vsixmanifest

Lines changed: 6 additions & 6 deletions
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="GraphicalDebugging.Adam.Wulkiewicz.ab1fcb4d-58d9-4d6e-b243-68bc2285475e" Version="0.20" Language="en-US" Publisher="Adam Wulkiewicz" />
4+
<Identity Id="GraphicalDebugging.Adam.Wulkiewicz.ab1fcb4d-58d9-4d6e-b243-68bc2285475e" Version="0.21" Language="en-US" Publisher="Adam Wulkiewicz" />
55
<DisplayName>Graphical Debugging</DisplayName>
66
<Description xml:space="preserve">Visualization of variables during debugging, e.g. Boost.Geometry models, containers of values, arrays of points, etc.</Description>
77
<License>LICENSE_1_0.txt</License>
@@ -11,16 +11,16 @@
1111
<Tags>2d array boost box c c++ cartesian chart container complex curve debugger debugging deque geographic geometry gis graphical linestring list mpl plot point polygon ring segment spherical std stl tuple variant vector</Tags>
1212
</Metadata>
1313
<Installation>
14-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[12.0,16.0)" />
15-
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[12.0,16.0)" />
16-
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[12.0,16.0)" />
14+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[12.0,17.0)" />
15+
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[12.0,17.0)" />
16+
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[12.0,17.0)" />
1717
</Installation>
1818
<Prerequisites>
19-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[12.0,16.0)" DisplayName="Visual Studio core editor" />
19+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[12.0,17.0)" DisplayName="Visual Studio core editor" />
2020
</Prerequisites>
2121
<Dependencies>
2222
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
23-
<Dependency Id="Microsoft.VisualStudio.MPF.12.0" DisplayName="Visual Studio MPF 12.0" d:Source="Installed" Version="[12.0,16.0)" />
23+
<Dependency Id="Microsoft.VisualStudio.MPF.12.0" DisplayName="Visual Studio MPF 12.0" d:Source="Installed" Version="[12.0,17.0)" />
2424
</Dependencies>
2525
<Assets>
2626
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />

0 commit comments

Comments
 (0)