-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from joeaudette/netcore-rtm-migration
migrate to rtm
- Loading branch information
Showing
8 changed files
with
127 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"projects": [ "src", "test" ], | ||
"sdk": { | ||
"version": "1.0.0-preview1-002702" | ||
} | ||
"sdk": { | ||
"version": "1.0.0-preview2-003121" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Configure bundling and minification for the project. | ||
// More info at https://go.microsoft.com/fwlink/?LinkId=808241 | ||
[ | ||
{ | ||
"outputFileName": "wwwroot/css/site.min.css", | ||
// An array of relative input file paths. Globbing patterns supported | ||
"inputFiles": [ | ||
"wwwroot/css/site.css" | ||
] | ||
}, | ||
{ | ||
"outputFileName": "wwwroot/js/site.min.js", | ||
"inputFiles": [ | ||
"wwwroot/js/site.js" | ||
], | ||
// Optionally specify minification options | ||
"minify": { | ||
"enabled": true, | ||
"renameLocals": true | ||
}, | ||
// Optinally generate .map file | ||
"sourceMap": false | ||
} | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.