Skip to content

Commit 1ed01ca

Browse files
committed
Updated CLI to 2.0.0
1 parent 9b0384e commit 1ed01ca

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.0.0
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.0.0" --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.0.0
66
DOTNET_INSTALL_DIR: .\dotnetcli
77

88
install:

samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj

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

33
<PropertyGroup>
44
<Description>Identity sample MVC application on ASP.NET Core</Description>
55
<Authors>Microsoft</Authors>
6-
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
<TargetFramework>netcoreapp2.0</TargetFramework>
77
<RootNamespace>IdentitySample</RootNamespace>
88
</PropertyGroup>
99

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" />

0 commit comments

Comments
 (0)