forked from App-vNext/Polly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.targets
26 lines (24 loc) · 951 Bytes
/
Directory.Build.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project>
<Import Project="$(MsBuildThisFileDirectory)eng/Common.targets" />
<Import Project="$(MsBuildThisFileDirectory)eng/$(ProjectType).targets" Condition="$(ProjectType) != ''" />
<ItemGroup>
<Using Include="System.Collections" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Diagnostics" />
<Using Include="System.Reflection" />
<Using Remove="System.Net.Http" />
</ItemGroup>
<ItemGroup Condition="'$(IncludePollyUsings)' == 'true'">
<Using Include="Polly.Bulkhead" />
<Using Include="Polly.Caching" />
<Using Include="Polly.CircuitBreaker" />
<Using Include="Polly.Fallback" />
<Using Include="Polly.NoOp" />
<Using Include="Polly.RateLimit" />
<Using Include="Polly.Registry" />
<Using Include="Polly.Retry" />
<Using Include="Polly.Timeout" />
<Using Include="Polly.Utilities" />
<Using Include="Polly.Wrap" />
</ItemGroup>
</Project>