-
-
Notifications
You must be signed in to change notification settings - Fork 390
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net471;netcoreapp2.0;</TargetFrameworks> | ||
<TargetFrameworks>net461;netcoreapp2.0;</TargetFrameworks> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
tmenier
Author
Owner
|
||
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp2.0</TargetFrameworks> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
</PropertyGroup> | ||
|
||
|
@@ -19,7 +19,7 @@ | |
<ProjectReference Include="..\..\src\Flurl.Http\Flurl.Http.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net471'"> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net461'"> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
FWIW, I'd also replace tests using
netcoreapp2.0
withnetcoreapp3.1
. See out of support .NET Core releases.