-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathSynercoding.FormsAuthentication.csproj
30 lines (26 loc) · 1.41 KB
/
Synercoding.FormsAuthentication.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>With this package you can use ASP.NET Forms Authentication, alot of the code for this package was taken (and altered) from https://github.com/Microsoft/referencesource/tree/master/System.Web/Security under MIT license.</Description>
<Company>Synercoding</Company>
<Authors>Synercoding</Authors>
<Version>2.1.0</Version>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<FileVersion>2.1.0.0</FileVersion>
<RepositoryUrl>https://github.com/synercoder/FormsAuthentication</RepositoryUrl>
<PackageProjectUrl>https://github.com/synercoder/FormsAuthentication</PackageProjectUrl>
<NeutralLanguage>en</NeutralLanguage>
<PackageReleaseNotes>Mickaël Derriey (@mderriey) fixed issue #2 in pull #3: Return default value when an exception is thrown while unprotecting data</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Remove="predel\**" />
<EmbeddedResource Remove="predel\**" />
<None Remove="predel\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.0.0" />
</ItemGroup>
</Project>