Skip to content

Commit

Permalink
v3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MaceWindu committed Oct 1, 2020
1 parent 802ba3a commit 75766c0
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 26 deletions.
12 changes: 0 additions & 12 deletions LICENSE.txt

This file was deleted.

19 changes: 19 additions & 0 deletions MIT-LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2020 Ilya Chudin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Binary file added icon64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@
<Description>Identity sample MVC application on ASP.NET Core</Description>
<VersionPrefix>1.1.0</VersionPrefix>
<Authors>Microsoft</Authors>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
<PreserveCompilationContext>true</PreserveCompilationContext>
<AssemblyName>IdentitySample.Mvc</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>IdentitySample.Mvc</PackageId>
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">1.1.1</RuntimeFrameworkVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/LinqToDB.Identity/IConcurrency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace LinqToDB.Identity
{
/// <summary>
/// Cpncurrency interface for <see cref="IIdentityRole{TKey}" /> and <see cref="IIdentityUser{TKey}" />/>
/// Concurrency interface for <see cref="IIdentityRole{TKey}" /> and <see cref="IIdentityUser{TKey}" />/>
/// </summary>
/// <typeparam name="TKey">The type used for the primary key.</typeparam>
public interface IConcurrency<TKey>
Expand Down
18 changes: 10 additions & 8 deletions src/LinqToDB.Identity/LinqToDB.Identity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<Description>ASP.NET Core Identity provider that uses LinqToDB.</Description>
<VersionPrefix>2.0.1</VersionPrefix>
<Version>2.0.1</Version>
<PackageVersion>2.0.1</PackageVersion>
<VersionPrefix>3.0.0</VersionPrefix>
<Version>3.0.0</Version>
<PackageVersion>3.0.0</PackageVersion>

<Authors>Ilya Chudin</Authors>

<TargetFrameworks>net461;netstandard2.0;netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>net461;netstandard2.0;netcoreapp2.1</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -22,9 +22,9 @@

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

Expand All @@ -35,18 +35,20 @@
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="linq2db" Version="3.1.1" />
<PackageReference Include="linq2db" Version="3.1.3" />

<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="2.1.2" />
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netcoreapp2.0'">
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0' OR '$(TargetFramework)'=='netcoreapp2.1'">
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
<TreatWarningsAsErrors>t1rue</TreatWarningsAsErrors>

<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down Expand Up @@ -36,7 +36,7 @@
<PackageReference Include="Microsoft.Data.Sqlite" Version="2.1.0" />
</ItemGroup>

<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp2.0'">
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp2.1'">
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

<AssemblyName>Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test</AssemblyName>
Expand Down

0 comments on commit 75766c0

Please sign in to comment.