-
-
Notifications
You must be signed in to change notification settings - Fork 782
Expand file tree
/
Copy pathRefit.HttpClientFactory.csproj
More file actions
35 lines (29 loc) · 1.05 KB
/
Refit.HttpClientFactory.csproj
File metadata and controls
35 lines (29 loc) · 1.05 KB
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
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>Refit HTTP Client Factory Extensions</Product>
<Description>Refit HTTP Client Factory Extensions</Description>
<TargetFrameworks>$(RefitTargets)</TargetFrameworks>
<Nullable>enable</Nullable>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Refit\Refit.csproj" PrivateAssets="Analyzers" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.14" />
</ItemGroup>
<ItemGroup>
<None Update="HttpClientFactoryExtensions.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>HttpClientFactoryExtensions.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="HttpClientFactoryExtensions.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>HttpClientFactoryExtensions.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>