Skip to content

Commit 20cd680

Browse files
committed
Updated CLI to 2.1.4
1 parent 9b0384e commit 20cd680

File tree

4 files changed

+6
-13
lines changed

4 files changed

+6
-13
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ matrix:
1919

2020
env:
2121
global:
22-
- CLI_VERSION=2.1.1
22+
- CLI_VERSION=2.1.4
2323
- COMMIT=${TRAVIS_COMMIT::8}
2424
- AWS_ACCESS_KEY_ID=MOCK_ID
2525
- AWS_SECRET_ACCESS_KEY=MOCK_SECRET_KEY
@@ -34,7 +34,7 @@ before_install:
3434
install:
3535
- npm install semver -g
3636
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
37-
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "1.0.4" --install-dir "$DOTNET_INSTALL_DIR"
37+
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "2.1.4" --install-dir "$DOTNET_INSTALL_DIR"
3838
- curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.sh | bash /dev/stdin --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR"
3939
- export PATH="$DOTNET_INSTALL_DIR:$DOTNET_105_INSTALL_DIR:$PATH"
4040

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ environment:
22
AWS_ACCESS_KEY_ID: MOCK_ID
33
AWS_SECRET_ACCESS_KEY: MOCK_SECRET_KEY
44
AWS_SESSION_TOKEN: MOCK_SESSION_TOKEN
5-
CLI_VERSION: 2.1.1
5+
CLI_VERSION: 2.1.4
66
DOTNET_INSTALL_DIR: .\dotnetcli
77

88
install:

src/AspNetCore.Identity.DynamoDB/AspNetCore.Identity.DynamoDB.csproj

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,7 @@
1616
<Copyright>(c) 2017 Vasiliy Solovey</Copyright>
1717
</PropertyGroup>
1818

19-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.6'">
20-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="1.0.1" />
21-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.0.1" />
22-
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.3" />
23-
<PackageReference Update="NETStandard.Library" Version="1.6.0" />
24-
</ItemGroup>
25-
26-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
19+
<ItemGroup>
2720
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.3" />
2821
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.0.0" />
2922
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.0.1" />

tests/AspNetCore.Identity.DynamoDB.Tests/AspNetCore.Identity.DynamoDB.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp2.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
55
<DebugType>portable</DebugType>
66
<AssemblyName>AspNetCore.Identity.DynamoDB.Tests</AssemblyName>
77
<PackageId>AspNetCore.Identity.DynamoDB.Tests</PackageId>

0 commit comments

Comments
 (0)