Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
Added x86 and x64 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
g0dsCookie committed Apr 20, 2017
1 parent a0f78d7 commit b123d46
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
12 changes: 12 additions & 0 deletions FastDLCompressor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,25 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|x64.ActiveCfg = Debug|x64
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|x64.Build.0 = Debug|x64
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|x86.ActiveCfg = Debug|x86
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Debug|x86.Build.0 = Debug|x86
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|Any CPU.Build.0 = Release|Any CPU
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|x64.ActiveCfg = Release|x64
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|x64.Build.0 = Release|x64
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|x86.ActiveCfg = Release|x86
{5490B0BB-B3BB-47DE-A50B-80528C8433E3}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
40 changes: 40 additions & 0 deletions FastDLCompressor/FastDLCompressor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,46 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
Expand Down

0 comments on commit b123d46

Please sign in to comment.