Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6210421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:09:22+00:00 2026-05-24T06:09:22+00:00

I have a unit test projects which requires some external dependencies. Those dependendies come

  • 0

I have a unit test projects which requires some external dependencies. Those dependendies come in 2 flavors: i386 (……..\External\EA\i386\Core.dll) and amd64 (……..\External\EA\amd64\Core.dll).

  <ItemGroup>
    <Reference Include="Core">
      <HintPath>..\..\..\..\External\EA\amd64\Core.dll</HintPath>
    </Reference>
    <Reference Include="Util">
      <HintPath>..\..\..\..\External\EA\amd64\Util.dll</HintPath>
    </Reference>

MsTest is 32bits and I want the path of those assemblies to be ……..\External\EA**i386**\Core.dll. In other words, how to I tell msbuild to pick the right build target.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T06:09:23+00:00Added an answer on May 24, 2026 at 6:09 am

    Just put a condition on the references, or as shown below, on the ItemGroup containing them,

    <ItemGroup
       Condition="'$(Platform)' == 'x64'">
       <Reference Include="Core">
          <HintPath>..\..\..\..\External\EA\amd64\Core.dll</HintPath>
       </Reference>
       <Reference Include="Util">
          <HintPath>..\..\..\..\External\EA\amd64\Util.dll</HintPath>
       </Reference>
    </ItemGroup>
    <ItemGroup
       Condition="'$(Platform)' == 'Win32'">
       <Reference Include="Core">
          <HintPath>..\..\..\..\External\EA\i386\Core.dll</HintPath>
       </Reference>
       <Reference Include="Util">
          <HintPath>..\..\..\..\External\EA\i386\Util.dll</HintPath>
       </Reference>
    </ItemGroup>
    

    You’ll have to discovere exactly which values for $(Platform) your project is using, which a simple examination of the XML of the projects will show.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have different projects written in .NET 3.5 and some unit test projects to
I have a unit test which depends on some code that uses MEF. When
I have 2 projects each one with its own unit test project, and one
I have a unit test which contains the following line of code Site.objects.get(name=UnitTest).delete() and
In a complex VS2008 solution I have three unit test projects. As they operate
I have a unit test project based on UnitTest++. I usually put a breakpoint
I have a Unit test project for my Application using DUnit framework. This project
HI, I want to have set configuration settings for a unit test project that
We are currently using unit tests to test our project. We have the majority
I have a unit test that works fine locally but when uploaded to TeamCity

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.