Skip to content

Commit

Permalink
build: use only minimum framework versions as targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ArachisH committed Mar 17, 2024
1 parent ae1e90c commit 56e23d8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Eavesdrop.CLI/Eavesdrop.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net461;net7</TargetFrameworks>
<TargetFrameworks>net461;netcoreapp2.0;net5.0</TargetFrameworks>
<RollForward>Major</RollForward>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" Condition="'$(TargetFramework)' == 'net461'" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Eavesdrop\Eavesdrop.csproj" />
</ItemGroup>
Expand Down

0 comments on commit 56e23d8

Please sign in to comment.