Skip to content

Commit 3c04e41

Browse files
committed
chore(aspnetcore): update everything to 1.1.0
1 parent 5318f3e commit 3c04e41

File tree

3 files changed

+19
-22
lines changed

3 files changed

+19
-22
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM microsoft/dotnet:latest
1+
FROM microsoft/dotnet:1.0.0-preview2-onbuild
22

33
RUN apt-get update
44
RUN wget -qO- https://deb.nodesource.com/setup_4.x | bash -
@@ -11,7 +11,7 @@ RUN ["dotnet", "restore"]
1111

1212
COPY . /app
1313
RUN ["dotnet", "build"]
14-
14+
1515
EXPOSE 5000/tcp
1616

1717
ENTRYPOINT ["dotnet", "run", "--server.urls", "http://0.0.0.0:5000"]

project.json

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@
44
"version": "1.1.0",
55
"type": "platform"
66
},
7-
"Microsoft.Extensions.Caching.Memory": "1.0.0",
8-
"Microsoft.AspNetCore.AngularServices": "1.0.0-*",
9-
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
7+
"Microsoft.Extensions.Caching.Memory": "1.1.0",
8+
"Microsoft.AspNetCore.Diagnostics": "1.1.0",
109
"Microsoft.AspNetCore.WebSockets.Server": "0.1.0",
11-
"Microsoft.AspNetCore.Mvc": "1.0.1",
10+
"Microsoft.AspNetCore.Mvc": "1.1.0",
1211
"Newtonsoft.Json": "9.0.1",
1312
"Microsoft.AspNetCore.Razor.Tools": {
1413
"version": "1.0.0-preview2-final",
1514
"type": "build"
1615
},
17-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
18-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
19-
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
20-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
21-
"Microsoft.Extensions.Configuration.Json": "1.0.0",
22-
"Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
23-
"Microsoft.Extensions.Logging": "1.0.0",
24-
"Microsoft.Extensions.Logging.Console": "1.0.0",
25-
"Microsoft.Extensions.Logging.Debug": "1.0.0",
26-
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
16+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
17+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
18+
"Microsoft.AspNetCore.SpaServices": "1.1.0-*",
19+
"Microsoft.AspNetCore.StaticFiles": "1.1.0",
20+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
21+
"Microsoft.Extensions.Configuration.Json": "1.1.0",
22+
"Microsoft.Extensions.Configuration.CommandLine": "1.1.0",
23+
"Microsoft.Extensions.Logging": "1.1.0",
24+
"Microsoft.Extensions.Logging.Console": "1.1.0",
25+
"Microsoft.Extensions.Logging.Debug": "1.1.0",
26+
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0"
2727
},
2828

2929
"tools": {
@@ -63,10 +63,7 @@
6363
"include": [
6464
"appsettings.json",
6565
"Client",
66-
"node_modules",
67-
"typings",
6866
"Views",
69-
"tsconfig.json",
7067
"web.config",
7168
"webpack.*.js",
7269
"wwwroot"
@@ -76,8 +73,8 @@
7673
"scripts": {
7774
"prepublish": [
7875
"npm install",
79-
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js",
80-
"node node_modules/webpack/bin/webpack.js"
76+
"node node_modules/webpack/bin/webpack.js --config webpack.config.vendor.js --env.prod",
77+
"node node_modules/webpack/bin/webpack.js --env.prod"
8178
],
8279
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
8380
},

web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-->
77

88
<system.webServer>
9-
<handlers>
9+
<handlers>
1010
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
1111
</handlers>
1212
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>

0 commit comments

Comments
 (0)