|
15 | 15 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
16 | 16 | <DebugSymbols>true</DebugSymbols>
|
17 | 17 | <OutputPath>bin\x64\Debug\</OutputPath>
|
18 |
| - <DefineConstants>TRACE;DEBUG;BUILD64</DefineConstants> |
| 18 | + <DefineConstants>TRACE;DEBUG</DefineConstants> |
19 | 19 | <DebugType>full</DebugType>
|
20 | 20 | <PlatformTarget>x64</PlatformTarget>
|
21 | 21 | <ErrorReport>prompt</ErrorReport>
|
22 | 22 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
23 | 23 | </PropertyGroup>
|
24 | 24 | <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
25 | 25 | <OutputPath>bin\x64\Release\</OutputPath>
|
26 |
| - <DefineConstants>TRACE;BUILD64</DefineConstants> |
| 26 | + <DefineConstants>TRACE</DefineConstants> |
27 | 27 | <Optimize>true</Optimize>
|
28 | 28 | <DebugType>pdbonly</DebugType>
|
29 | 29 | <PlatformTarget>x64</PlatformTarget>
|
|
53 | 53 | <OutputPath>bin\Debug\</OutputPath>
|
54 | 54 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
55 | 55 | <DebugType>full</DebugType>
|
56 |
| - <PlatformTarget>x86</PlatformTarget> |
| 56 | + <PlatformTarget>AnyCPU</PlatformTarget> |
57 | 57 | <ErrorReport>prompt</ErrorReport>
|
58 | 58 | <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
59 | 59 | </PropertyGroup>
|
|
81 | 81 | <Compile Include="ThrowHelper.cs" />
|
82 | 82 | </ItemGroup>
|
83 | 83 | <ItemGroup>
|
84 |
| - <None Include="build\zstdlib_x64.dll" Condition="'$(Platform)' == 'x64'"> |
85 |
| - <Link>%(FileName)%(Extension)</Link> |
| 84 | + <None Include="build\x64\zstdlib.dll" Condition="'$(Platform)' == 'x64' OR '$(Platform)' == 'AnyCPU'"> |
| 85 | + <Link>x64\%(FileName)%(Extension)</Link> |
86 | 86 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
87 | 87 | </None>
|
88 |
| - <None Include="build\zstdlib_x86.dll" Condition="'$(Platform)' != 'x64'"> |
89 |
| - <Link>%(FileName)%(Extension)</Link> |
| 88 | + <None Include="build\x86\zstdlib.dll" Condition="'$(Platform)' == 'x86' OR '$(Platform)' == 'AnyCPU'"> |
| 89 | + <Link>x86\%(FileName)%(Extension)</Link> |
90 | 90 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
91 | 91 | </None>
|
92 | 92 | </ItemGroup>
|
|
0 commit comments