forked from Sustainsys/Saml2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSustainsys.Saml2.AspNetCore2.csproj
38 lines (30 loc) · 1.46 KB
/
Sustainsys.Saml2.AspNetCore2.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net47;net461</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageReleaseNotes>$releaseNotes$</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Sustainsys/Saml2</PackageProjectUrl>
<PackageIcon>sustainsys.png</PackageIcon>
<Copyright>Copyright © Sustainsys and contributors 2017-2020</Copyright>
<PackageTags>SAML2 authentication AspNet SAML SSO</PackageTags>
<PackageDescription>ASP.NET Core authentication handler for the SAML2 protocol, compatible with Asp.Net Core 2.X and 3.X</PackageDescription>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>C:\git\Sustainsys.Saml2\Sustainsys.Saml2.AspNetCore2\bin\Sustainsys.Saml2.AspNetCore2.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<Authors>Sustainsys</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sustainsys.Saml2\Sustainsys.Saml2.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\nuget\sustainsys.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>