Skip to content

Commit 75766c0

Browse files
committed
v3 release
1 parent 802ba3a commit 75766c0

File tree

8 files changed

+34
-26
lines changed

8 files changed

+34
-26
lines changed

LICENSE.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

MIT-LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2020 Ilya Chudin
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

icon64.png

3.44 KB
Loading

samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@
44
<Description>Identity sample MVC application on ASP.NET Core</Description>
55
<VersionPrefix>1.1.0</VersionPrefix>
66
<Authors>Microsoft</Authors>
7-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
7+
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
88
<PreserveCompilationContext>true</PreserveCompilationContext>
99
<AssemblyName>IdentitySample.Mvc</AssemblyName>
1010
<OutputType>Exe</OutputType>
1111
<PackageId>IdentitySample.Mvc</PackageId>
12-
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">1.1.1</RuntimeFrameworkVersion>
1312
</PropertyGroup>
1413

1514
<ItemGroup>

src/LinqToDB.Identity/IConcurrency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace LinqToDB.Identity
44
{
55
/// <summary>
6-
/// Cpncurrency interface for <see cref="IIdentityRole{TKey}" /> and <see cref="IIdentityUser{TKey}" />/>
6+
/// Concurrency interface for <see cref="IIdentityRole{TKey}" /> and <see cref="IIdentityUser{TKey}" />/>
77
/// </summary>
88
/// <typeparam name="TKey">The type used for the primary key.</typeparam>
99
public interface IConcurrency<TKey>

src/LinqToDB.Identity/LinqToDB.Identity.csproj

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
<PropertyGroup>
44
<Description>ASP.NET Core Identity provider that uses LinqToDB.</Description>
5-
<VersionPrefix>2.0.1</VersionPrefix>
6-
<Version>2.0.1</Version>
7-
<PackageVersion>2.0.1</PackageVersion>
5+
<VersionPrefix>3.0.0</VersionPrefix>
6+
<Version>3.0.0</Version>
7+
<PackageVersion>3.0.0</PackageVersion>
88

99
<Authors>Ilya Chudin</Authors>
1010

11-
<TargetFrameworks>net461;netstandard2.0;netcoreapp2.0</TargetFrameworks>
11+
<TargetFrameworks>net461;netstandard2.0;netcoreapp2.1</TargetFrameworks>
1212
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1313

1414
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -22,9 +22,9 @@
2222

2323
<PackageId>linq2db.Identity</PackageId>
2424
<PackageTags>aspnetcore;linq2db;identity;membership;LinqToDB</PackageTags>
25-
<PackageIconUrl>http://www.gravatar.com/avatar/fc2e509b6ed116b9aa29a7988fdb8990?s=320</PackageIconUrl>
25+
<PackageIcon>icon.png</PackageIcon>
2626
<PackageProjectUrl>https://github.com/linq2db/LinqToDB.Identity</PackageProjectUrl>
27-
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
27+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2828
<RepositoryType>git</RepositoryType>
2929
<RepositoryUrl>git://github.com/linq2db/LinqToDB.Identity</RepositoryUrl>
3030

@@ -35,18 +35,20 @@
3535
</PropertyGroup>
3636

3737
<ItemGroup>
38+
<None Include="..\..\MIT-LICENSE.txt" Pack="true" PackagePath="$(PackageLicenseFile)"/>
39+
<None Include="..\..\icon64.png" Pack="true" PackagePath="$(PackageIcon)"/>
3840
<EmbeddedResource Include="**\*.resx" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
3941
</ItemGroup>
4042

4143
<ItemGroup>
42-
<PackageReference Include="linq2db" Version="3.1.1" />
44+
<PackageReference Include="linq2db" Version="3.1.3" />
4345

4446
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.2" />
4547
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
4648
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.2" />
4749
</ItemGroup>
4850

49-
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netcoreapp2.0'">
51+
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netcoreapp2.1'">
5052
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
5153
</PropertyGroup>
5254
</Project>

test/Microsoft.AspNetCore.Identity.EntityFrameworkCore.InMemory.Test/Microsoft.AspNetCore.Identity.EntityFrameworkCore.InMemory.Test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
55
<TreatWarningsAsErrors>t1rue</TreatWarningsAsErrors>
66

77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -36,7 +36,7 @@
3636
<PackageReference Include="Microsoft.Data.Sqlite" Version="2.1.0" />
3737
</ItemGroup>
3838

39-
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp2.0'">
39+
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp2.1'">
4040
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
4141
</PropertyGroup>
4242

test/Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test/Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
55
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
66

77
<AssemblyName>Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test</AssemblyName>

0 commit comments

Comments
 (0)