Skip to content

Commit

Permalink
Incrementing version and updating sample with new package.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlmelendez committed Sep 1, 2015
1 parent 45c7e46 commit 6a56be0
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 10 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,35 @@ $RECYCLE.BIN/
# Mac desktop service store files
.DS_Store
/packages
/sample/packages/Antlr.3.5.0.2
/sample/packages/bootstrap.3.2.0
/sample/packages/ElCamino.AspNet.Identity.DocumentDB.1.1.0.0
/sample/packages/jQuery.2.1.1
/sample/packages/jQuery.Validation.1.13.0
/sample/packages/Microsoft.AspNet.Identity.Core.2.2.1
/sample/packages/Microsoft.AspNet.Identity.Owin.2.1.0
/sample/packages/Microsoft.AspNet.Mvc.5.2.2
/sample/packages/Microsoft.AspNet.Razor.3.2.2
/sample/packages/Microsoft.AspNet.Web.Optimization.1.1.3
/sample/packages/Microsoft.AspNet.WebApi.5.2.2
/sample/packages/Microsoft.AspNet.WebApi.Client.5.2.2
/sample/packages/Microsoft.AspNet.WebApi.Core.5.2.2
/sample/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2
/sample/packages/Microsoft.AspNet.WebPages.3.2.2
/sample/packages/Microsoft.Azure.DocumentDB.1.4.0
/sample/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.2
/sample/packages/Microsoft.Owin.3.0.0
/sample/packages/Microsoft.Owin.Host.SystemWeb.3.0.0
/sample/packages/Microsoft.Owin.Security.3.0.0
/sample/packages/Microsoft.Owin.Security.Cookies.3.0.0
/sample/packages/Microsoft.Owin.Security.Facebook.3.0.0
/sample/packages/Microsoft.Owin.Security.Google.3.0.0
/sample/packages/Microsoft.Owin.Security.MicrosoftAccount.3.0.0
/sample/packages/Microsoft.Owin.Security.OAuth.3.0.0
/sample/packages/Microsoft.Owin.Security.Twitter.3.0.0
/sample/packages/Microsoft.Web.Infrastructure.1.0.0.0
/sample/packages/Modernizr.2.8.3
/sample/packages/Newtonsoft.Json.7.0.1
/sample/packages/Owin.1.0
/sample/packages/Respond.1.4.2
/sample/packages/WebGrease.1.6.0
2 changes: 1 addition & 1 deletion sample/samplemvc/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="Antlr" version="3.5.0.2" targetFramework="net451" />
<package id="bootstrap" version="3.2.0" targetFramework="net451" />
<package id="ElCamino.AspNet.Identity.DocumentDB" version="1.0.0.0" targetFramework="net451" />
<package id="ElCamino.AspNet.Identity.DocumentDB" version="1.1.0.0" targetFramework="net451" />
<package id="jQuery" version="2.1.1" targetFramework="net451" />
<package id="jQuery.Validation" version="1.13.0" targetFramework="net451" />
<package id="Microsoft.AspNet.Identity.Core" version="2.2.1" targetFramework="net451" />
Expand Down
4 changes: 2 additions & 2 deletions sample/samplemvc/samplemvc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Antlr.3.5.0.2\lib\Antlr3.Runtime.dll</HintPath>
</Reference>
<Reference Include="ElCamino.AspNet.Identity.DocumentDB, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8a83e5a7822753ac, processorArchitecture=MSIL">
<HintPath>..\packages\ElCamino.AspNet.Identity.DocumentDB.1.0.0.0\lib\net45\ElCamino.AspNet.Identity.DocumentDB.dll</HintPath>
<Reference Include="ElCamino.AspNet.Identity.DocumentDB, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\ElCamino.AspNet.Identity.DocumentDB.1.1.0.0\lib\net45\ElCamino.AspNet.Identity.DocumentDB.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.AspNet.Identity.Core, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<description>$description$</description>
<releaseNotes>
Release $version$ This project is an open source plugin to ASP.NET Identity framework using Azure DocumentDB.
* Initial 1.0 release.
* Release 1.1
** Optimized threading and deserialization.
</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags>ASP.NET Identity 2.0 Azure DocumentDB Storage MVC UserStore RoleStore UserManager</tags>
Expand Down
6 changes: 3 additions & 3 deletions src/identity.documentdb/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[assembly: Guid("29B22384-59C4-40E9-B59F-346666629742")]

//http://semver.org/
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyInformationalVersion("1.1.0.0")]

6 changes: 3 additions & 3 deletions tests/identity.documentdb.tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
[assembly: Guid("B50C24F2-2BD4-42EC-87C8-D8BDEBB1097E")]

//http://semver.org/
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyInformationalVersion("1.1.0.0")]

0 comments on commit 6a56be0

Please sign in to comment.