Skip to content

Commit 4410e45

Browse files
Updates to target .NET Core 1.1.2 - Version changes at every .csproj file, dockerfile and the docker-compose.ci.build.yml file for building from the CLI.
1 parent a9b49c9 commit 4410e45

16 files changed

Lines changed: 17 additions & 10 deletions

File tree

docker-compose.ci.build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '2'
22

33
services:
44
ci-build:
5-
image: microsoft/aspnetcore-build:1.0-1.1
5+
image: microsoft/aspnetcore-build:1.1.2
66
volumes:
77
- .:/src
88
working_dir: /src

src/Services/Basket/Basket.API/Basket.API.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
56
<OutputType>Exe</OutputType>
67
<PackageTargetFallback>$(PackageTargetFallback);netstandard1.6.1;dnxcore50;portable-net451+win8</PackageTargetFallback>
78
<DockerComposeProjectPath>..\..\..\..\docker-compose.dcproj</DockerComposeProjectPath>

src/Services/Basket/Basket.API/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:1.1
1+
FROM microsoft/aspnetcore:1.1.2
22
ARG source
33
WORKDIR /app
44
EXPOSE 80

src/Services/Catalog/Catalog.API/Catalog.API.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
56
<OutputType>Exe</OutputType>
67
<UserSecretsId>aspnet-Catalog.API-20161122013618</UserSecretsId>
78
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>

src/Services/Catalog/Catalog.API/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:1.1
1+
FROM microsoft/aspnetcore:1.1.2
22
ARG source
33
WORKDIR /app
44
EXPOSE 80

src/Services/Identity/Identity.API/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:1.1
1+
FROM microsoft/aspnetcore:1.1.2
22
ARG source
33
WORKDIR /app
44
EXPOSE 80

src/Services/Identity/Identity.API/Identity.API.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
56
<OutputType>Exe</OutputType>
67
<UserSecretsId>aspnet-eShopOnContainers.Identity-90487118-103c-4ff0-b9da-e5e26f7ab0c5</UserSecretsId>
78
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>

src/Services/Ordering/Ordering.API/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:1.1
1+
FROM microsoft/aspnetcore:1.1.2
22
ARG source
33
WORKDIR /app
44
EXPOSE 80

src/Services/Ordering/Ordering.API/Ordering.API.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
56
<OutputType>Exe</OutputType>
67
<UserSecretsId>aspnet-Ordering.API-20161122013547</UserSecretsId>
78
<PackageTargetFallback>$(PackageTargetFallback);netstandard1.6.1;dnxcore50;portable-net451+win8</PackageTargetFallback>

src/Web/WebMVC/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/aspnetcore:1.1
1+
FROM microsoft/aspnetcore:1.1.2
22
ARG source
33
WORKDIR /app
44
EXPOSE 80

0 commit comments

Comments
 (0)