Build git-tfs as x86

When git-tfs is built as AnyCPU, it is unable to access checkin policy DLLs that are built as x86 when run on a x64 machine. Since checkin policy DLLs can only be x86 or AnyCPU (Visual Studio is x86 only), then making git-tfs x86 allows it to support all dlls that Visual Studio supports.
This commit is contained in:
Blackbaud-JasonTremper
2016-11-18 16:17:16 -05:00
committed by GitHub
parent ea2ac37179
commit 8a50e22b9d
+3 -3
View File
@@ -43,7 +43,7 @@
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
@@ -59,7 +59,7 @@
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<ErrorReport>prompt</ErrorReport>
@@ -337,4 +337,4 @@
</ItemGroup>
</When>
</Choose>
</Project>
</Project>