Skip to content

Commit bdfca9f

Browse files
committed
1.3.2
Seperate 32Bit and 64Bit releases Fixed incorrect version in log files.
1 parent fb9d23e commit bdfca9f

File tree

8 files changed

+54
-4
lines changed

8 files changed

+54
-4
lines changed
0 Bytes
Binary file not shown.

Source/HDRProfile.sln

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,25 @@ EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
1113
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
1216
EndGlobalSection
1317
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1418
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1519
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|x64.ActiveCfg = Debug|x64
21+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|x64.Build.0 = Debug|x64
22+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|x86.ActiveCfg = Debug|x86
23+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Debug|x86.Build.0 = Debug|x86
1624
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|Any CPU.ActiveCfg = Release|Any CPU
1725
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|x64.ActiveCfg = Release|x64
27+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|x64.Build.0 = Release|x64
28+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|x86.ActiveCfg = Release|x86
29+
{E26387C1-AFAD-46E2-A671-05E48AB5CB99}.Release|x86.Build.0 = Release|x86
1830
EndGlobalSection
1931
GlobalSection(SolutionProperties) = preSolution
2032
HideSolutionNode = FALSE

Source/HDRProfile/App.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<system:String x:Key="DonateLink">https://paypal.me/pools/c/8vksshrMln</system:String>
1414
<system:String x:Key="InfoLink">https://sourceforge.net/projects/hdr-profile</system:String>
15-
<system:String x:Key="Version">1.3.1</system:String>
15+
<system:String x:Key="Version">1.3.2</system:String>
1616
<SolidColorBrush x:Key="ButtonBackground" Color="#FF0086F5"/>
1717
<SolidColorBrush x:Key="AccentColor" Color="#FFFF581A"/>
1818
<SolidColorBrush x:Key="AccentColor2" Color="#4C87B3"/>
0 Bytes
Binary file not shown.

Source/HDRProfile/HDRProfile.csproj

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,44 @@
5959
<PropertyGroup>
6060
<ApplicationManifest>app.manifest</ApplicationManifest>
6161
</PropertyGroup>
62+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
63+
<DebugSymbols>true</DebugSymbols>
64+
<OutputPath>bin\x64\Debug\</OutputPath>
65+
<DefineConstants>DEBUG;TRACE</DefineConstants>
66+
<DebugType>full</DebugType>
67+
<PlatformTarget>x64</PlatformTarget>
68+
<LangVersion>7.3</LangVersion>
69+
<ErrorReport>prompt</ErrorReport>
70+
</PropertyGroup>
71+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
72+
<OutputPath>..\Release_x64\</OutputPath>
73+
<DefineConstants>TRACE</DefineConstants>
74+
<Optimize>true</Optimize>
75+
<DebugType>pdbonly</DebugType>
76+
<PlatformTarget>x64</PlatformTarget>
77+
<LangVersion>7.3</LangVersion>
78+
<ErrorReport>prompt</ErrorReport>
79+
<Prefer32Bit>true</Prefer32Bit>
80+
</PropertyGroup>
81+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
82+
<DebugSymbols>true</DebugSymbols>
83+
<OutputPath>bin\x86\Debug\</OutputPath>
84+
<DefineConstants>DEBUG;TRACE</DefineConstants>
85+
<DebugType>full</DebugType>
86+
<PlatformTarget>x86</PlatformTarget>
87+
<LangVersion>7.3</LangVersion>
88+
<ErrorReport>prompt</ErrorReport>
89+
</PropertyGroup>
90+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
91+
<OutputPath>..\Release_x86\</OutputPath>
92+
<DefineConstants>TRACE</DefineConstants>
93+
<Optimize>true</Optimize>
94+
<DebugType>pdbonly</DebugType>
95+
<PlatformTarget>x86</PlatformTarget>
96+
<LangVersion>7.3</LangVersion>
97+
<ErrorReport>prompt</ErrorReport>
98+
<Prefer32Bit>true</Prefer32Bit>
99+
</PropertyGroup>
62100
<ItemGroup>
63101
<Reference Include="CodectoryCore.Logging, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
64102
<SpecificVersion>False</SpecificVersion>

Source/HDRProfile/HDRProfileHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace HDRProfile
2525
public class HDRProfileHandler : BaseViewModel
2626
{
2727

28-
public static Logs Logs = new Logs($"{System.AppDomain.CurrentDomain.BaseDirectory}HDRProfile.log", "HDRPProfile", true);
28+
public static Logs Logs = new Logs($"{System.AppDomain.CurrentDomain.BaseDirectory}HDRProfile.log", "HDRPProfile", Assembly.GetExecutingAssembly().GetName().Version.ToString(), true);
2929

3030
Dictionary<ApplicationItem, bool> _lastApplicationStates = new Dictionary<ApplicationItem, bool>();
3131

Source/HDRProfile/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
5353
// indem Sie "*" wie unten gezeigt eingeben:
5454
// [assembly: AssemblyVersion("1.0.*")]
55-
[assembly: AssemblyVersion("1.3.1.0")]
56-
[assembly: AssemblyFileVersion("1.3.1.0")]
55+
[assembly: AssemblyVersion("1.3.2.0")]
56+
[assembly: AssemblyFileVersion("1.3.2.0")]
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)