Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
miltador committed Mar 1, 2017
2 parents 6245884 + b88678c commit baa0e94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# AspNetCore.Identity.DynamoDB
[![Travis Build Status](https://travis-ci.org/miltador/AspNetCore.Identity.DynamoDB.svg?branch=master)](https://travis-ci.org/miltador/AspNetCore.Identity.DynamoDB)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/ooa12u8cdp3t0nss?svg=true)](https://ci.appveyor.com/project/miltador/aspnetcore-identity-dynamodb)
[![NuGet package version](https://img.shields.io/nuget/v/AspNetCore.Identity.DynamoDB.svg)](https://www.nuget.org/packages/AspNetCore.Identity.DynamoDB)

[DynamoDB](https://aws.amazon.com/dynamodb/) data store adaptor for [ASP.NET Core Identity](https://github.com/aspnet/Identity),
which allows you to build ASP.NET Core web applications, including membership, login, and user data.With this library,
Expand Down
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ environment:
AWS_SECRET_ACCESS_KEY: MOCK_SECRET_KEY
AWS_SESSION_TOKEN: MOCK_SESSION_TOKEN
CLI_VERSION: 1.0.0-rc4-004771
DOTNET_INSTALL_DIR: ".\dotnetcli"
DOTNET_INSTALL_DIR: .\dotnetcli

install:
- cinst 7zip

build_script:
# Download and install .NET Core SDK
- ps: (new-object System.Net.WebClient).DownloadFile("https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1", "./dotnet.ps1")
- ps: powershell -noexit & .\dotnet.ps1 -Version $env:CLI_VERSION -InstallDir $env:DOTNET_INSTALL_DIR
- ps: $env:PATH = $env:DOTNET_INSTALL_DIR + ";" + $env:PATH
- ps: (new-object System.Net.WebClient).DownloadFile("https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1", "$PWD\dotnet.ps1")
- ps: dir
- ps: .\dotnet.ps1 -Version $env:CLI_VERSION -InstallDir $env:DOTNET_INSTALL_DIR
# Download and run local DynamoDB
- ps: Start-Process -NoNewWindow powershell .\scripts\local_db.ps1
# Restore, build, test
Expand Down

0 comments on commit baa0e94

Please sign in to comment.