Last active
August 29, 2015 14:06
-
-
Save agross/1d1f8acd8bf05e23a0d3 to your computer and use it in GitHub Desktop.
So bekommt man die Ausrufezeichen bei false Conditions weg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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