|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
3 | | - <TargetFrameworks>netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;net472;net462</TargetFrameworks> |
| 3 | + <TargetFrameworks>netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;netcoreapp3.1;net472;net462</TargetFrameworks> |
4 | 4 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
5 | 5 | <Authors>Anders Revsgaard</Authors> |
6 | 6 | <Company>ITfoxtec</Company> |
|
10 | 10 | <Title>ITfoxtec Identity SAML 2.0</Title> |
11 | 11 | <Description>The ITfoxtec.Identity.Saml2 package adds SAML-P support for both Identity Provider (IdP) and Relying Party (RP) on top of the SAML 2.0 functionality implemented in .NET. |
12 | 12 |
|
13 | | - Support .NET Core 2.1, 2.2 and 3.0 |
| 13 | + Support .NET Core 2.1, 2.2, 3.0 and 3.1 |
14 | 14 | Support .NET Framework 4.6.2 and 4.7.2 |
15 | 15 |
|
16 | 16 | Support message signing and validation (SHA1/SHA256/SHA384/SHA512) as well as encryption and decryption. Login, logout, single logout and metadata. Both SP Initiated and IdP Initiated sign on. |
@@ -95,6 +95,27 @@ Tested for compliance with AD FS, Azure AD and Azure AD B2C. Furthermore, the Da |
95 | 95 | <NoWarn>$(NoWarn);1591;1573</NoWarn> |
96 | 96 | </PropertyGroup> |
97 | 97 |
|
| 98 | + <ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> |
| 99 | + <PackageReference Include="Microsoft.IdentityModel.Tokens.Saml" Version="5.4.0" /> |
| 100 | + <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.4.0" /> |
| 101 | + <PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" /> |
| 102 | + <PackageReference Include="System.Security.Cryptography.Xml" Version="4.5.0" /> |
| 103 | + <PackageReference Include="System.ServiceModel.Security" Version="4.5.3" /> |
| 104 | + </ItemGroup> |
| 105 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'"> |
| 106 | + <DefineConstants>NETCORE31;NETCORE;</DefineConstants> |
| 107 | + </PropertyGroup> |
| 108 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp3.1|AnyCPU'"> |
| 109 | + <DebugType>pdbonly</DebugType> |
| 110 | + <DebugSymbols>true</DebugSymbols> |
| 111 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 112 | + <NoWarn>$(NoWarn);1591;1573</NoWarn> |
| 113 | + </PropertyGroup> |
| 114 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.1|AnyCPU'"> |
| 115 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 116 | + <NoWarn>$(NoWarn);1591;1573</NoWarn> |
| 117 | + </PropertyGroup> |
| 118 | + |
98 | 119 | <ItemGroup Condition=" '$(TargetFramework)' == 'net472' "> |
99 | 120 | <Reference Include="mscorlib" /> |
100 | 121 | <Reference Include="Microsoft.CSharp" /> |
|
0 commit comments