-
Notifications
You must be signed in to change notification settings - Fork 99
/
BCrypt.Net.csproj
74 lines (60 loc) · 3.58 KB
/
BCrypt.Net.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>BCrypt.Net-Next</AssemblyTitle>
<AssemblyName>BCrypt.Net-Next</AssemblyName>
<PackageId>BCrypt.Net-Next</PackageId>
<Title>BCrypt .Net</Title>
<TargetFrameworks>netstandard2.0;netstandard2.1;net20;net35;net462;net472;net48;net5.0;net6.0</TargetFrameworks>
<OutputTypeEx>Library</OutputTypeEx>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<IncludeSource>false</IncludeSource>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Chris McKee, Ryan D. Emerl, Damien Miller</Authors>
<Copyright>2006-2021 Chris McKee, Ryan D. Emerl, Damien Miller</Copyright>
<Summary>BCrypt.Net, C# implementation of BCrypt, OpenBSD-style Blowfish password hashing</Summary>
<Description>A fixed, enhanced and namespace compatible version of BCrypt.Net port of jBCrypt implemented in C#. It uses a variant of the Blowfish encryption algorithm’s keying schedule, and introduces a work factor, which allows you to determine how expensive the hash function will be, allowing the algorithm to be "future-proof".</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/BcryptNet/bcrypt.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/BcryptNet/bcrypt.net</RepositoryUrl>
<Version>4.0.3</Version>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<Deterministic>false</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net20' ">
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net20'">C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net35' ">
<FrameworkPathOverride Condition="'$(TargetFramework)' == 'net35'">C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1' ">
<DefineConstants>$(DefineConstants);NET2_1</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net20'
or '$(TargetFramework)' == 'net35'">
<Reference Include="System" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net452'
or '$(TargetFramework)' == 'net462'">
<Reference Include="System" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'
or '$(TargetFramework)' == 'net462'
or '$(TargetFramework)' == 'net472'
or '$(TargetFramework)' == 'net48'">
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'
or '$(TargetFramework)' == 'netstandard2.0'
or '$(TargetFramework)' == 'net472'
or '$(TargetFramework)' == 'net48'
or '$(TargetFramework)' == 'net5.0'
or '$(TargetFramework)' == 'net6.0'
or '$(TargetFramework)' == 'netcoreapp3.1'">
<DefineConstants>$(DefineConstants);HAS_SPAN</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\BCrypt.Net-Next.xml</DocumentationFile>
</PropertyGroup>
</Project>