Skip to content

Commit cb39608

Browse files
Fix deps
1 parent 442ba46 commit cb39608

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2323
</PackageReference>
24-
<PackageReference Include="Exhaustion" Version="1.0.0" Condition="'$(MSBuildProjectName)' != 'Exhaustion' AND '$(MSBuildProjectName)' != 'Exhaustion.Tests'">
24+
<PackageReference Include="Exhaustion" Version="1.0.0" Condition="'$(MSBuildProjectName)' != 'Exhaustion' AND '$(MSBuildProjectName)' != 'Exhaustion.Tests' AND '$(MSBuildProjectName)' != 'RestClient.Net'">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2727
</PackageReference>

RestClient.Net/RestClient.Net.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFrameworks>net8.0;net9.0;netstandard2.1</TargetFrameworks>
44
<IsPackable>true</IsPackable>
55
<PackageId>RestClient.Net</PackageId>
6-
<Version>7.0.0</Version>
6+
<Version>7.1.2</Version>
77
<Authors>Christian Findlay</Authors>
88
<Company>Christian Findlay</Company>
99
<Description>The safest way to make REST calls in C#. Functional HTTP client library with Result types, exhaustiveness checking, and zero exceptions.</Description>
@@ -18,8 +18,11 @@
1818
<ItemGroup>
1919
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
2020
<PackageReference Include="System.Text.Json" Version="8.0.5" Condition="'$(TargetFramework)' == 'netstandard2.1'" />
21-
<PackageReference Include="Urls" Version="1.0.0" />
22-
<PackageReference Update="Exhaustion">
21+
<PackageReference Include="Urls" Version="1.0.0">
22+
<PrivateAssets></PrivateAssets>
23+
<IncludeAssets>all</IncludeAssets>
24+
</PackageReference>
25+
<PackageReference Include="Exhaustion" Version="1.0.0">
2326
<PrivateAssets></PrivateAssets>
2427
<IncludeAssets>all</IncludeAssets>
2528
</PackageReference>

0 commit comments

Comments
 (0)