Skip to content

Commit fe56f42

Browse files
committed
Set minimal version supported to debug to .NET 4.0, bump to version 0.7
1 parent 761ff37 commit fe56f42

File tree

11 files changed

+42
-46
lines changed

11 files changed

+42
-46
lines changed

ImageVisualizer11/ImageVisualizer11.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ImageVisualizer</RootNamespace>
1111
<AssemblyName>Aberus.VisualStudio.Debugger.ImageVisualizer</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
@@ -48,7 +48,6 @@
4848
<Reference Include="System.Data.DataSetExtensions" />
4949
<Reference Include="Microsoft.CSharp" />
5050
<Reference Include="System.Data" />
51-
<Reference Include="System.Net.Http" />
5251
<Reference Include="System.Xml" />
5352
<Reference Include="WindowsBase" />
5453
<Reference Include="WindowsFormsIntegration" />

ImageVisualizer12/ImageVisualizer12.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ImageVisualizer</RootNamespace>
1111
<AssemblyName>Aberus.VisualStudio.Debugger.ImageVisualizer</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
@@ -48,7 +48,6 @@
4848
<Reference Include="System.Data.DataSetExtensions" />
4949
<Reference Include="Microsoft.CSharp" />
5050
<Reference Include="System.Data" />
51-
<Reference Include="System.Net.Http" />
5251
<Reference Include="System.Xml" />
5352
<Reference Include="WindowsBase" />
5453
<Reference Include="WindowsFormsIntegration" />

ImageVisualizer14/ImageVisualizer14.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ImageVisualizer</RootNamespace>
1111
<AssemblyName>Aberus.VisualStudio.Debugger.ImageVisualizer</AssemblyName>
12-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
@@ -48,7 +48,6 @@
4848
<Reference Include="System.Data.DataSetExtensions" />
4949
<Reference Include="Microsoft.CSharp" />
5050
<Reference Include="System.Data" />
51-
<Reference Include="System.Net.Http" />
5251
<Reference Include="System.Xml" />
5352
<Reference Include="WindowsBase" />
5453
<Reference Include="WindowsFormsIntegration" />

ImageVisualizer14/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Aleksander Berus")]
1212
[assembly: AssemblyProduct("Image Debugger Visualizer")]
13-
[assembly: AssemblyCopyright("Copyright © aberus.com 2016-2019")]
13+
[assembly: AssemblyCopyright("Aleksander Berus. All rights reserved.")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.6.1.0")]
36-
[assembly: AssemblyFileVersion("0.6.1.0")]
35+
[assembly: AssemblyVersion("0.7.0.0")]
36+
[assembly: AssemblyFileVersion("0.7.0.0")]

ImageVisualizer15/ImageVisualizer15.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>ImageVisualizer</RootNamespace>
1111
<AssemblyName>Aberus.VisualStudio.Debugger.ImageVisualizer</AssemblyName>
12-
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
@@ -49,7 +49,6 @@
4949
<Reference Include="System.Data.DataSetExtensions" />
5050
<Reference Include="Microsoft.CSharp" />
5151
<Reference Include="System.Data" />
52-
<Reference Include="System.Net.Http" />
5352
<Reference Include="System.Xml" />
5453
<Reference Include="WindowsBase" />
5554
<Reference Include="WindowsFormsIntegration" />

ImageVisualizer16.Common/ImageVisualizer16.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.0;net35</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.0;net40</TargetFrameworks>
55
<RootNamespace>ImageVisualizer</RootNamespace>
66
<UseWPF>true</UseWPF>
77
<AssemblyName>Aberus.VisualStudio.Debugger.ImageVisualizer.Common</AssemblyName>

ImageVisualizer16.DebuggeeSide/ImageVisualizer16.DebuggeeSide.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.0;net35</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.0;net40</TargetFrameworks>
55
<TargetFramework>net35</TargetFramework>
66
<RootNamespace>ImageVisualizer</RootNamespace>
77
<UseWPF>true</UseWPF>
@@ -23,7 +23,7 @@
2323
</Reference>
2424
</ItemGroup>
2525

26-
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
26+
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
2727
<Reference Include="Microsoft.VisualStudio.DebuggerVisualizers">
2828
<Private>False</Private>
2929
<HintPath>C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\Common7\Packages\Debugger\Visualizers\net2.0\Microsoft.VisualStudio.DebuggerVisualizers.dll</HintPath>

ImageVisualizerPackage/ImageVisualizerPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace ImageVisualizer
3737
/// </para>
3838
/// </remarks>
3939
[PackageRegistration(UseManagedResourcesOnly = true)]
40-
[InstalledProductRegistration("#110", "#112", "0.6.1", IconResourceID = 400)] // Info on this package for Help/About
40+
[InstalledProductRegistration("#110", "#112", "0.7.0", IconResourceID = 400)] // Info on this package for Help/About
4141
[Guid(ImageVisualizerPackage.PackageGuidString)]
4242
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
4343
public sealed class ImageVisualizerPackage : Package

ImageVisualizerPackage/Properties/AssemblyInfo.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("ImageVisualizer")]
8+
[assembly: AssemblyTitle("Image Debugger Visualizer")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("ImageVisualizer")]
13-
[assembly: AssemblyCopyright("")]
11+
[assembly: AssemblyCompany("Aleksander Berus")]
12+
[assembly: AssemblyProduct("Image Debugger Visualizer")]
13+
[assembly: AssemblyCopyright("Aleksander Berus. All rights reserved.")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -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.6.1.0")]
33-
[assembly: AssemblyFileVersion("0.6.1.0")]
32+
[assembly: AssemblyVersion("0.7.0.0")]
33+
[assembly: AssemblyFileVersion("0.7.0.0")]
Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
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">
3-
<Metadata>
4-
<Identity Id="2443c97f-77f2-47ea-b473-7f34832b2f86" Version="0.6.0" Language="en-US" Publisher="Aleksander Berus" />
5-
<DisplayName>Debugger Image Visualizer</DisplayName>
6-
<Description xml:space="preserve">A debug visualizer for Visual Studio that allows you to visually view the graphic content of images during debugging.</Description>
7-
<MoreInfo>https://github.com/aberus/ImageVisualizer</MoreInfo>
8-
<Icon>Logo_128x.png</Icon>
9-
<PreviewImage>Preview_200x.png</PreviewImage>
10-
</Metadata>
11-
<Installation InstalledByMsi="true" AllUsers="true">
12-
<InstallationTarget Version="10.0" Id="Microsoft.VisualStudio.Pro" />
13-
<InstallationTarget Version="11.0" Id="Microsoft.VisualStudio.Pro" />
14-
<InstallationTarget Version="12.0" Id="Microsoft.VisualStudio.Community" />
15-
<InstallationTarget Version="14.0" Id="Microsoft.VisualStudio.Community" />
16-
<InstallationTarget Version="15.0" Id="Microsoft.VisualStudio.Community" />
17-
<InstallationTarget Version="16.0" Id="Microsoft.VisualStudio.Community" />
18-
</Installation>
19-
<Dependencies>
20-
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.0,)" />
21-
</Dependencies>
22-
<Prerequisites>
23-
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,17.0)" DisplayName="Visual Studio core editor" />
24-
</Prerequisites>
25-
<Assets>
26-
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
27-
</Assets>
3+
<Metadata>
4+
<Identity Id="2443c97f-77f2-47ea-b473-7f34832b2f86" Version="0.7.0" Language="en-US" Publisher="Aleksander Berus" />
5+
<DisplayName>Debugger Image Visualizer</DisplayName>
6+
<Description xml:space="preserve">A debug visualizer for Visual Studio that allows you to visually view the graphic content of images during debugging.</Description>
7+
<MoreInfo>https://github.com/aberus/ImageVisualizer</MoreInfo>
8+
<Icon>Logo_128x.png</Icon>
9+
<PreviewImage>Preview_200x.png</PreviewImage>
10+
</Metadata>
11+
<Installation InstalledByMsi="true" AllUsers="true">
12+
<InstallationTarget Version="10.0" Id="Microsoft.VisualStudio.Pro" />
13+
<InstallationTarget Version="11.0" Id="Microsoft.VisualStudio.Pro" />
14+
<InstallationTarget Version="12.0" Id="Microsoft.VisualStudio.Community" />
15+
<InstallationTarget Version="14.0" Id="Microsoft.VisualStudio.Community" />
16+
<InstallationTarget Version="15.0" Id="Microsoft.VisualStudio.Community" />
17+
<InstallationTarget Version="16.0" Id="Microsoft.VisualStudio.Community" />
18+
</Installation>
19+
<Dependencies>
20+
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.0,)" />
21+
</Dependencies>
22+
<Prerequisites>
23+
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,17.0)" DisplayName="Visual Studio core editor" />
24+
</Prerequisites>
25+
<Assets>
26+
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
27+
</Assets>
2828
</PackageManifest>

0 commit comments

Comments
 (0)