EgtUILib 1.6f4 :

- rivista EgtInterface per poter compilare come AnyCPU.
This commit is contained in:
Dario Sassi
2015-06-30 14:07:11 +00:00
parent 0de77a035a
commit 3b1411b554
4 changed files with 3670 additions and 465 deletions
+3651 -435
View File
File diff suppressed because it is too large Load Diff
+10 -14
View File
@@ -1,24 +1,20 @@
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EgtUILib", "EgtUILib.vbproj", "{502DBE04-2D66-4517-9368-C33DC698691F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|x64.ActiveCfg = Debug|x64
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|x64.Build.0 = Debug|x64
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|x86.ActiveCfg = Debug|x86
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|x86.Build.0 = Debug|x86
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|x64.ActiveCfg = Release|x64
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|x64.Build.0 = Release|x64
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|x86.ActiveCfg = Release|x86
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|x86.Build.0 = Release|x86
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{502DBE04-2D66-4517-9368-C33DC698691F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{502DBE04-2D66-4517-9368-C33DC698691F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
+4 -4
View File
@@ -449,10 +449,10 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<PropertyGroup>
<PostBuildEvent>IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Dll32\EgtUILib.dll
IF "$(PlatformName)"=="x86" IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\DllD32\EgtUILib.dll
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Dll64\EgtUILib.dll
IF "$(PlatformName)"=="x64" IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\DllD64\EgtUILib.dll</PostBuildEvent>
<PostBuildEvent>IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Dll32\EgtUILib.dll
IF "$(ConfigurationName)" == "Release" copy $(TargetPath) c:\EgtProg\Dll64\EgtUILib.dll
IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\DllD32\EgtUILib.dll
IF "$(ConfigurationName)" == "Debug" copy $(TargetPath) c:\EgtProg\DllD64\EgtUILib.dll</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
+5 -12
View File
@@ -8,19 +8,12 @@ Imports System.Runtime.InteropServices
' Controllare i valori degli attributi dell'assembly
#If PLATFORM = "x64" Then
#If DEBUG Then
<Assembly: AssemblyTitle("EgtUILib Debug 64 bit")>
<Assembly: AssemblyTitle("EgtUILib Debug AnyCPU")>
#Else
<Assembly: AssemblyTitle("EgtUILib Release 64 bit")>
#End If
#Else
#If DEBUG Then
<Assembly: AssemblyTitle("EgtUILib Debug 32 bit")>
#Else
<Assembly: AssemblyTitle("EgtUILib Release 32 bit")>
#End If
<Assembly: AssemblyTitle("EgtUILib Release AnyCPU")>
#End If
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("EgalTech s.r.l.")>
<Assembly: AssemblyProduct("EgtUILib")>
@@ -42,5 +35,5 @@ Imports System.Runtime.InteropServices
' È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
' utilizzando l'asterisco (*) come descritto di seguito:
<Assembly: AssemblyVersion("1.6.6.3")>
<Assembly: AssemblyFileVersion("1.6.6.3")>
<Assembly: AssemblyVersion("1.6.6.4")>
<Assembly: AssemblyFileVersion("1.6.6.4")>