Skip to content

Commit

Permalink
Use ELFIO library version 3.8; Increase plugin version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Serge Lamikhov-Center committed Aug 23, 2020
1 parent 4a303a4 commit 27735e7
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 41 deletions.
23 changes: 14 additions & 9 deletions anyelf.sln
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "anyelf", "anyelf.vcproj", "{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30413.136
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "anyelf", "anyelf.vcxproj", "{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|Win32.ActiveCfg = Debug|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|Win32.Build.0 = Debug|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|x64.ActiveCfg = Debug|x64
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|x64.Build.0 = Debug|x64
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|Win32.ActiveCfg = Release|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|Win32.Build.0 = Release|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|x86.ActiveCfg = Debug|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Debug|x86.Build.0 = Debug|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|x64.ActiveCfg = Release|x64
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|x64.Build.0 = Release|x64
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|x86.ActiveCfg = Release|Win32
{66170CB7-EFCE-4C0E-A2A4-A8AD8B823AAA}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E68F053D-B9E7-4016-B4B2-75D05BB0C9BE}
EndGlobalSection
EndGlobal
8 changes: 4 additions & 4 deletions anyelf.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<UseOfMfc>false</UseOfMfc>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
Expand Down
26 changes: 0 additions & 26 deletions anyelf12.sln

This file was deleted.

1 change: 1 addition & 0 deletions anyelfdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ std::string elfdump( std::string fileToLoad )
dump::symbol_tables ( out, reader );
dump::dynamic_tags ( out, reader );
dump::notes ( out, reader );
dump::modinfo (out, reader);
dump::section_datas ( out, reader );
dump::segment_datas ( out, reader );

Expand Down
2 changes: 1 addition & 1 deletion make_package.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
msbuild anyelf.vcxproj /t:Rebuild /p:project="anyelf" /p:platform="Win32" /p:configuration="Release"
msbuild anyelf.vcxproj /t:Rebuild /p:project="anyelf" /p:platform="x64" /p:configuration="Release"
cscript zip.vbs wlx_anyelf_1.5.zip Release\anyelf.wlx x64\Release\anyelf.wlx64 pluginst.inf
cscript zip.vbs wlx_anyelf_1.6.zip Release\anyelf.wlx x64\Release\anyelf.wlx64 pluginst.inf
2 changes: 1 addition & 1 deletion pluginst.inf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[plugininstall]
description= AnyELF - ELF file viewer. Version 1.5
description= AnyELF - ELF file viewer. Version 1.6
type=wlx
file=anyelf.wlx
defaultdir=plugins\wlx\anyelf

0 comments on commit 27735e7

Please sign in to comment.