Moved the readme to root.

This commit is contained in:
JudahGabriel
2017-08-23 13:39:27 -05:00
parent 12c2594ff3
commit d881a4a20f
4 changed files with 7 additions and 19 deletions
+4
View File
@@ -4,6 +4,10 @@
<TargetFramework>netstandard1.6</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="Readme.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="1.1.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
+3 -3
View File
@@ -2,8 +2,8 @@
<package >
<metadata>
<id>RavenDB.Identity</id>
<version>0.0.9.0</version>
<title>RavenDB Identity Provider for ASP.Net Core</title>
<version>1.0.0.0</version>
<title>RavenDB Identity for ASP.NET Core</title>
<authors>Judah Gabriel Himango</authors>
<owners>judahgabriel</owners>
<licenseUrl>https://github.com/JudahGabriel/RavenDB.AspNet.Identity/blob/master/LICENSE.md</licenseUrl>
@@ -12,7 +12,7 @@
<description>The simple and easy RavenDB Identity provider for ASP.NET Core. Use Raven to store your users and logins. As simple as services.AddRavenDbIdentity&lt;AppUser&gt;();</description>
<copyright>Copyright 2017 BitShuva</copyright>
<tags>ravendb identity raven nosql aspnet aspnetcore</tags>
<iconUrl>https://github.com/JudahGabriel/RavenDB.AspNet.Identity/blob/master/RavenDB.AspNet.Identity/nuget-icon.png?raw=true</iconUrl>
<iconUrl>https://github.com/JudahGabriel/RavenDB.Identity/blob/master/RavenDB.Identity/nuget-icon.png?raw=true</iconUrl>
<dependencies>
</dependencies>
</metadata>
@@ -90,21 +90,5 @@ namespace RavenDB.Identity
services.AddScoped<Microsoft.AspNetCore.Identity.IRoleStore<IdentityRole>, RoleStore<IdentityRole>>();
return services;
}
//public static IServiceCollection AddRavenIdentity()
//{
// Type userStoreType = typeof(UserStore<>).MakeGenericType(userType, roleType);
// //Type roleStoreType;
// //roleStoreType = typeof(RoleStore<>).MakeGenericType(roleType);
// var services = new ServiceCollection();
// services.AddScoped
// typeof(IUserStore<>).MakeGenericType(userType),
// userStoreType);
// //services.AddScoped(
// // typeof(IRoleStore<>).MakeGenericType(roleType),
// // roleStoreType);
// return services;
//}
}
}