forked from openiddict/openiddict-core
-
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.
Begin porting OpenIdDictServerBuilderTests from 2.x.
- Some tests would not work without the changes to how the Options were retrieved. - The skipped tests are those that are currently failing on all frameworks. Will be continuing to try to fix those. - The commented out tests have compiler errors. Will need to go through and see which, if any, are still valid. Related Work Items: openiddict#894
- Loading branch information
1 parent
9aae602
commit bb94534
Showing
3 changed files
with
964 additions
and
0 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
37 changes: 37 additions & 0 deletions
37
test/OpenIddict.Server.Tests/OpenIddict.Server.Tests.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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;net472;netcoreapp2.1;netcoreapp3.1</TargetFrameworks> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Moq" Version="4.13.1" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\OpenIddict.Abstractions\OpenIddict.Abstractions.csproj" /> | ||
<ProjectReference Include="..\..\src\OpenIddict.Server\OpenIddict.Server.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net472' "> | ||
<Reference Include="System.Net.Http" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' "> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.2.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<Reference Include="System.Net.Http" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' != 'net461' "> | ||
<DefineConstants>$(DefineConstants);SUPPORTS_ECDSA</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
Oops, something went wrong.