Skip to content

Commit 19a2fdc

Browse files
authored
Merge pull request #22 from joeaudette/netcore-rtm-migration
migrate to rtm
2 parents 2672571 + fe8ce66 commit 19a2fdc

File tree

8 files changed

+127
-335
lines changed

8 files changed

+127
-335
lines changed

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src", "test" ],
3-
"sdk": {
4-
"version": "1.0.0-preview1-002702"
5-
}
3+
"sdk": {
4+
"version": "1.0.0-preview2-003121"
5+
}
66
}

src/PagingDemo.Web/Project_Readme.html

Lines changed: 0 additions & 187 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Configure bundling and minification for the project.
2+
// More info at https://go.microsoft.com/fwlink/?LinkId=808241
3+
[
4+
{
5+
"outputFileName": "wwwroot/css/site.min.css",
6+
// An array of relative input file paths. Globbing patterns supported
7+
"inputFiles": [
8+
"wwwroot/css/site.css"
9+
]
10+
},
11+
{
12+
"outputFileName": "wwwroot/js/site.min.js",
13+
"inputFiles": [
14+
"wwwroot/js/site.js"
15+
],
16+
// Optionally specify minification options
17+
"minify": {
18+
"enabled": true,
19+
"renameLocals": true
20+
},
21+
// Optinally generate .map file
22+
"sourceMap": false
23+
}
24+
]

src/PagingDemo.Web/gulpfile.js

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)