FubuMvcArchive / ripple

Super charged dependency management with Nuget without the merge hell
http://fubuworld.com/ripple
Other
45 stars 35 forks source link

Conditional References not Handled #255

Open danielHalan opened 10 years ago

danielHalan commented 10 years ago

References that are inside "Choose" tags are not being processed.

Example,

  <Choose>
    <When Condition="$(DefineConstants.Contains('AZURE'))">
      <ItemGroup>
        <Reference Include="NServiceBus.Hosting.Azure">
          <HintPath>..\packages\NServiceBus.Hosting.Azure\lib\net40\NServiceBus.Hosting.Azure.dll</HintPath>
        </Reference>
      </ItemGroup>
    </When>
    <Otherwise>
      <ItemGroup>
        <Reference Include="NServiceBus.Host">
          <HintPath>..\packages\NServiceBus.Host\lib\net40\NServiceBus.Host.exe</HintPath>
        </Reference>
      </ItemGroup>
    </Otherwise>
  </Choose>