-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- xunit.core and xunit.abstractions instead of full xunit (don't need the assertions) - add Meziantou.Extensions.Logging.Xunit to include logs in test output when failures occur in integration tests - stop dumping all integration test output to console all the time
- Loading branch information
1 parent
14c45f1
commit d880f4b
Showing
9 changed files
with
78 additions
and
117 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,38 @@ | ||
<Project> | ||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0'"> | ||
<!-- We depend on the most permissive version of the JwtBearer handler | ||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net8.0'"> | ||
<!-- We depend on the most permissive version of the JwtBearer handler | ||
that doesn't give us a transitive depedency on a vulnerable package. --> | ||
<FrameworkVersion>8.0.1</FrameworkVersion> | ||
<ExtensionsVersion>8.0.0</ExtensionsVersion> | ||
<WilsonVersion>7.1.2</WilsonVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net9.0'"> | ||
<!-- We depend on the most permissive version of the JwtBearer handler | ||
<FrameworkVersion>8.0.1</FrameworkVersion> | ||
<ExtensionsVersion>8.0.0</ExtensionsVersion> | ||
<WilsonVersion>7.1.2</WilsonVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(TargetFramework)' == 'net9.0'"> | ||
<!-- We depend on the most permissive version of the JwtBearer handler | ||
that doesn't give us a transitive depedency on a vulnerable package. --> | ||
<FrameworkVersion>9.0.0-rc.2.24474.3</FrameworkVersion> | ||
<ExtensionsVersion>9.0.0-rc.2.24473.5</ExtensionsVersion> | ||
<WilsonVersion>8.0.1</WilsonVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- <PackageVersion Include="Duende.AccessTokenManagement" Version="3.0.0" /> --> | ||
<PackageVersion Include="Duende.AccessTokenManagement.OpenIdConnect" Version="3.0.0" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="$(FrameworkVersion)"/> | ||
<PackageVersion Include="IdentityModel" Version="7.0.0" /> | ||
|
||
<!-- Build --> | ||
<PackageVersion Include="MinVer" Version="6.0.0" /> | ||
|
||
<!-- Test --> | ||
<PackageVersion Include="AngleSharp" Version="1.1.2" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.2" /> | ||
<PackageVersion Include="Duende.IdentityServer" Version="7.0.7" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(FrameworkVersion)" /> | ||
<PackageVersion Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.7.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="RichardSzalay.MockHttp" Version="7.0.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.2.1" /> | ||
<PackageVersion Include="System.Text.Json" Version="8.0.5" /> | ||
<PackageVersion Include="xunit" Version="2.9.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" /> | ||
</ItemGroup> | ||
<FrameworkVersion>9.0.0-rc.2.24474.3</FrameworkVersion> | ||
<ExtensionsVersion>9.0.0-rc.2.24473.5</ExtensionsVersion> | ||
<WilsonVersion>8.0.1</WilsonVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- <PackageVersion Include="Duende.AccessTokenManagement" Version="3.0.0" /> --> | ||
<PackageVersion Include="Duende.AccessTokenManagement.OpenIdConnect" Version="3.0.0" /> | ||
<PackageVersion Include="Meziantou.Extensions.Logging.Xunit" Version="1.0.7" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="$(FrameworkVersion)" /> | ||
<PackageVersion Include="IdentityModel" Version="7.0.0" /> | ||
<!-- Build --> | ||
<PackageVersion Include="MinVer" Version="6.0.0" /> | ||
<!-- Test --> | ||
<PackageVersion Include="AngleSharp" Version="1.1.2" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.2" /> | ||
<PackageVersion Include="Duende.IdentityServer" Version="7.0.7" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="$(FrameworkVersion)" /> | ||
<PackageVersion Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.7.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" /> | ||
<PackageVersion Include="NSubstitute" Version="5.1.0" /> | ||
<PackageVersion Include="RichardSzalay.MockHttp" Version="7.0.0" /> | ||
<PackageVersion Include="Shouldly" Version="4.2.1" /> | ||
<PackageVersion Include="System.Text.Json" Version="8.0.5" /> | ||
<PackageVersion Include="xunit.core" Version="2.9.2" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" /> | ||
</ItemGroup> | ||
</Project> |
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
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
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
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 was deleted.
Oops, something went wrong.