Skip to content

Commit

Permalink
Updated CLI to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxotek committed Dec 26, 2018
1 parent 9b0384e commit 1ed01ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ matrix:

env:
global:
- CLI_VERSION=2.1.1
- CLI_VERSION=2.0.0
- COMMIT=${TRAVIS_COMMIT::8}
- AWS_ACCESS_KEY_ID=MOCK_ID
- AWS_SECRET_ACCESS_KEY=MOCK_SECRET_KEY
Expand All @@ -34,7 +34,7 @@ before_install:
install:
- npm install semver -g
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
- 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"
- 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"
- 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"
- export PATH="$DOTNET_INSTALL_DIR:$DOTNET_105_INSTALL_DIR:$PATH"

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ environment:
AWS_ACCESS_KEY_ID: MOCK_ID
AWS_SECRET_ACCESS_KEY: MOCK_SECRET_KEY
AWS_SESSION_TOKEN: MOCK_SESSION_TOKEN
CLI_VERSION: 2.1.1
CLI_VERSION: 2.0.0
DOTNET_INSTALL_DIR: .\dotnetcli

install:
Expand Down
4 changes: 2 additions & 2 deletions samples/IdentitySample.Mvc/IdentitySample.Mvc.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<Description>Identity sample MVC application on ASP.NET Core</Description>
<Authors>Microsoft</Authors>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RootNamespace>IdentitySample</RootNamespace>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,7 @@
<Copyright>(c) 2017 Vasiliy Solovey</Copyright>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.6'">
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="1.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.0.1" />
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.3" />
<PackageReference Update="NETStandard.Library" Version="1.6.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<ItemGroup>
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="2.0.1" />
Expand Down

0 comments on commit 1ed01ca

Please sign in to comment.