Skip to content

Instantly share code, notes, and snippets.

@agross
Last active August 29, 2015 14:06
Show Gist options
  • Save agross/1d1f8acd8bf05e23a0d3 to your computer and use it in GitHub Desktop.
Save agross/1d1f8acd8bf05e23a0d3 to your computer and use it in GitHub Desktop.
So bekommt man die Ausrufezeichen bei false Conditions weg
<Choose>
<When Condition="$(TargetFrameworkIdentifier) == 'Silverlight'"> <!-- ich denke das beste wäre alle für diese condition zu gruppieren -->
<ItemGroup> <!-- neue itemgroup außerhalb der anderen references! -->
<Reference Include="RestSharp.Silverlight">
<HintPath>..\..\packages\RestSharp\lib\sl4\RestSharp.Silverlight.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
</When>
</Choose>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment