This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
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.
pull/213/merge
Cesar De la Torre
7 years ago
parent
a9b49c9589
commit
4410e455e0
16 changed files
with
17 additions
and
10 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
docker-compose.ci.build.yml
+1
-0
src/Services/Basket/Basket.API/Basket.API.csproj
+1
-1
src/Services/Basket/Basket.API/Dockerfile
+1
-0
src/Services/Catalog/Catalog.API/Catalog.API.csproj
+1
-1
src/Services/Catalog/Catalog.API/Dockerfile
+1
-1
src/Services/Identity/Identity.API/Dockerfile
+1
-0
src/Services/Identity/Identity.API/Identity.API.csproj
+1
-1
src/Services/Ordering/Ordering.API/Dockerfile
+1
-0
src/Services/Ordering/Ordering.API/Ordering.API.csproj
+1
-1
src/Web/WebMVC/Dockerfile
+1
-0
src/Web/WebMVC/WebMVC.csproj
+1
-1
src/Web/WebMVC/wwwroot/css/site.min.css
+1
-1
src/Web/WebSPA/Dockerfile
+1
-0
src/Web/WebSPA/WebSPA.csproj
+1
-1
src/Web/WebStatus/Dockerfile
+2
-1
src/Web/WebStatus/WebStatus.csproj
+ 1
- 1
docker-compose.ci.build.yml
View File
@ -2,7 +2,7 @@ version: '2'
services:
ci-build:
image
:
microsoft/aspnetcore-build:1.
0-1.1
image
:
microsoft/aspnetcore-build:1.
1.2
volumes:
-
.:/src
working_dir
:
/src
+ 1
- 0
src/Services/Basket/Basket.API/Basket.API.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<PackageTargetFallback>$(PackageTargetFallback);netstandard1.6.1;dnxcore50;portable-net451+win8</PackageTargetFallback>
<DockerComposeProjectPath>..\..\..\..\docker-compose.dcproj</DockerComposeProjectPath>
+ 1
- 1
src/Services/Basket/Basket.API/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 0
src/Services/Catalog/Catalog.API/Catalog.API.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<UserSecretsId>aspnet-Catalog.API-20161122013618</UserSecretsId>
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
+ 1
- 1
src/Services/Catalog/Catalog.API/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 1
src/Services/Identity/Identity.API/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 0
src/Services/Identity/Identity.API/Identity.API.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<UserSecretsId>aspnet-eShopOnContainers.Identity-90487118-103c-4ff0-b9da-e5e26f7ab0c5</UserSecretsId>
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
+ 1
- 1
src/Services/Ordering/Ordering.API/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 0
src/Services/Ordering/Ordering.API/Ordering.API.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<UserSecretsId>aspnet-Ordering.API-20161122013547</UserSecretsId>
<PackageTargetFallback>$(PackageTargetFallback);netstandard1.6.1;dnxcore50;portable-net451+win8</PackageTargetFallback>
+ 1
- 1
src/Web/WebMVC/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 0
src/Web/WebMVC/WebMVC.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<UserSecretsId>aspnet-Microsoft.eShopOnContainers-946ae052-8305-4a99-965b-ec8636ddbae3</UserSecretsId>
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
+ 1
- 1
src/Web/WebMVC/wwwroot/css/site.min.css
File diff suppressed because it is too large
View File
+ 1
- 1
src/Web/WebSPA/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 1
- 0
src/Web/WebSPA/WebSPA.csproj
View File
@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
<OutputType>Exe</OutputType>
<PackageId>eShopOnContainers.WebSPA</PackageId>
<UserSecretsId>aspnetcorespa-c23d27a4-eb88-4b18-9b77-2a93f3b15119</UserSecretsId>
+ 1
- 1
src/Web/WebStatus/Dockerfile
View File
@ -1,4 +1,4 @@
FROM
microsoft/aspnetcore:1.1
FROM
microsoft/aspnetcore:1.1
.2
ARG
source
WORKDIR
/app
EXPOSE
80
+ 2
- 1
src/Web/WebStatus/WebStatus.csproj
View File
@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<TargetFramework>netcoreapp1.1.2</TargetFramework>
<RuntimeFrameworkVersion>1.1.2</RuntimeFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
Write
Preview
Loading…
Cancel
Save