-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove unused package reference (#49)
* chore: remove unused package reference changes: - removed `Moq` from `Webserver.Api.UnitTests` - removed `System.Web.Http.Common` from `Webserver.Api.UnitTests` - updated `System.Net.Http` to be frame work specific in `Webserver.API` - nuget version bump TestAdapter closes #48 changes: - `coverlet.collector` => `6.0.0` - `NUnit3TestAdapter` => `4.5.0`
- Loading branch information
1 parent
1f5e3a9
commit 9a350cb
Showing
3 changed files
with
55 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 39 additions & 41 deletions
80
tests/Webserver.API.UnitTests/Webserver.Api.UnitTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,40 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup Label="Globals"> | ||
<Platforms>x64;AnyCPU;x86</Platforms> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<AssemblyName>Webserver.API.UnitTests</AssemblyName> | ||
<RootNamespace>Webserver.API.UnitTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.collector" Version="3.2.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="MimeMapping" Version="1.0.1.37" /> | ||
<PackageReference Include="Moq" Version="4.20.70" /> | ||
<PackageReference Include="nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" /> | ||
<PackageReference Include="System.Web.Http.Common" Version="4.0.20126.16343" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Webserver.API\Webserver.API.csproj" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Update="Nerdbank.GitVersioning" Version="3.6.133" /> | ||
</ItemGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup Label="Globals"> | ||
<Platforms>x64;AnyCPU;x86</Platforms> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks> | ||
<IsPackable>false</IsPackable> | ||
<AssemblyName>Webserver.API.UnitTests</AssemblyName> | ||
<RootNamespace>Webserver.API.UnitTests</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.collector" Version="6.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="MimeMapping" Version="1.0.1.37" /> | ||
<PackageReference Include="nunit" Version="3.13.3" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="RichardSzalay.MockHttp" Version="6.0.0" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Webserver.API\Webserver.API.csproj" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Update="Nerdbank.GitVersioning" Version="3.6.133" /> | ||
</ItemGroup> | ||
|
||
</Project> |