Skip to content

Commit

Permalink
version and copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmelendez committed Nov 2, 2019
1 parent 1f8b92a commit 75b6376
Show file tree
Hide file tree
Showing 30 changed files with 37 additions and 36 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 David Melendez
Copyright (c) 2019 David Melendez

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/ElCamino.AspNetCore.Identity.DocumentDB/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<Description>Azure CosmosDB/DocumentDB Provider to support AspNet Identity Core 2.x frameworks for .NET.</Description>
<Copyright>Copyright © 2017 David Melendez, MIT License</Copyright>
<Copyright>Copyright © 2019 David Melendez, MIT License</Copyright>
<AssemblyTitle>Azure DocumentDB Provider for ASP.NET Identity Core</AssemblyTitle>
<Authors>David Melendez</Authors>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
Expand All @@ -11,18 +11,19 @@
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<PackageId>ElCamino.AspNetCore.Identity.DocumentDB</PackageId>
<PackageTags>ASP.NET;Identity Core;Azure;CosmosDB;DocumentDB;MVC;UserStore;RoleStore;UserManager;Microsoft.AspNetCore.Identity</PackageTags>
<PackageReleaseNotes>This project is an open source high performance plugin to ASP.NET Core Identity framework using Azure CosmosDB/DocumentDB.
Updated to Identity Core 2.0
</PackageReleaseNotes>
<PackageReleaseNotes>
Check https://github.com/dlmelendez/identitycoredocumentdb/releases for the latest release information.

</PackageReleaseNotes>
<PackageIconUrl>https://dlmelendez.github.io/identityazuretable/images/projectNugetPic.png</PackageIconUrl>
<PackageLicenseUrl>https://github.com/dlmelendez/identitycoredocumentdb/blob/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dlmelendez/identitycoredocumentdb.git</RepositoryUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.0.0</Version>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<Version>2.1.0</Version>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
<FileVersion>2.1.0.0</FileVersion>
<PackageProjectUrl>https://github.com/dlmelendez/identitycoredocumentdb</PackageProjectUrl>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System.Threading.Tasks;

namespace ElCamino.AspNetCore.Identity.DocumentDB.Extensions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Security.Cryptography;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using ElCamino.AspNetCore.Identity.DocumentDB.Model;
using Microsoft.Azure.Documents;
using Newtonsoft.Json;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using Microsoft.Azure.Documents.Client;
using Microsoft.Azure.Documents.Linq;
using System;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using System;
using Microsoft.AspNetCore.Identity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using ElCamino.AspNetCore.Identity.DocumentDB.Helpers;
using Microsoft.Azure.Documents.Client;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Microsoft.Azure.Documents;
using Newtonsoft.Json;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Microsoft.Azure.Documents;
using Newtonsoft.Json;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Microsoft.Azure.Documents;
using Newtonsoft.Json;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using System;
using Newtonsoft.Json;
Expand Down
2 changes: 1 addition & 1 deletion src/ElCamino.AspNetCore.Identity.DocumentDB/RoleStore.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

/// <reference group="Generic" />
/// <reference path="C:\Program Files (x86)\Microsoft Visual Studio 12.0\JavaScript\References\DocDbWrapperScript.js" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

/// <reference group="Generic" />
/// <reference path="C:\Program Files (x86)\Microsoft Visual Studio 12.0\JavaScript\References\DocDbWrapperScript.js" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

/// <reference group="Generic" />
/// <reference path="C:\Program Files (x86)\Microsoft Visual Studio 12.0\JavaScript\References\DocDbWrapperScript.js" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

/// <reference group="Generic" />
/// <reference path="C:\Program Files (x86)\Microsoft Visual Studio 12.0\JavaScript\References\DocDbWrapperScript.js" />
Expand Down
2 changes: 1 addition & 1 deletion src/ElCamino.AspNetCore.Identity.DocumentDB/UserStore.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using System;
using ElCamino.AspNetCore.Identity.DocumentDB;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.

using ElCamino.AspNetCore.Identity.DocumentDB.Model;
using Newtonsoft.Json;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ElCamino.AspNetCore.Identity.DocumentDB;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ElCamino.AspNetCore.Identity.DocumentDB;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// MIT License Copyright 2017 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
// MIT License Copyright 2019 (c) David Melendez. All rights reserved. See License.txt in the project root for license information.
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ElCamino.AspNetCore.Identity.DocumentDB;
Expand Down

0 comments on commit 75b6376

Please sign in to comment.