Skip to content

Commit 467d1ed

Browse files
committed
Optimized icon size
1 parent 14453cf commit 467d1ed

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

HuffmanCompression.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,28 @@
5656
<PropertyGroup>
5757
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
5858
</PropertyGroup>
59+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
60+
<DebugSymbols>true</DebugSymbols>
61+
<OutputPath>bin\x64\Debug\</OutputPath>
62+
<DefineConstants>DEBUG;TRACE</DefineConstants>
63+
<DebugType>full</DebugType>
64+
<PlatformTarget>x64</PlatformTarget>
65+
<LangVersion>latest</LangVersion>
66+
<ErrorReport>prompt</ErrorReport>
67+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
68+
<Prefer32Bit>true</Prefer32Bit>
69+
</PropertyGroup>
70+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
71+
<OutputPath>bin\x64\Release\</OutputPath>
72+
<DefineConstants>TRACE</DefineConstants>
73+
<Optimize>true</Optimize>
74+
<DebugType>pdbonly</DebugType>
75+
<PlatformTarget>x64</PlatformTarget>
76+
<LangVersion>latest</LangVersion>
77+
<ErrorReport>prompt</ErrorReport>
78+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
79+
<Prefer32Bit>true</Prefer32Bit>
80+
</PropertyGroup>
5981
<ItemGroup>
6082
<Reference Include="System" />
6183
<Reference Include="System.Core" />

HuffmanTree.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
1112
Release|Any CPU = Release|Any CPU
13+
Release|x64 = Release|x64
1214
EndGlobalSection
1315
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1416
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1517
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Debug|x64.ActiveCfg = Debug|x64
19+
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Debug|x64.Build.0 = Debug|x64
1620
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
1721
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Release|x64.ActiveCfg = Release|x64
23+
{15C28BC2-6294-4BE6-A46C-D075D51EB3CF}.Release|x64.Build.0 = Release|x64
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

Resources/icon.ico

-76.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)