From bf7acb2b08e3bda0cf10663e097d3ee88bd20776 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Tue, 24 Aug 2021 14:59:00 +0200 Subject: [PATCH] update gitignore --- .gitignore | 90 -------------------------- GWMS.User/compilerconfig.json | 6 ++ GWMS.User/compilerconfig.json.defaults | 63 ++++++++++++++++++ 3 files changed, 69 insertions(+), 90 deletions(-) create mode 100644 GWMS.User/compilerconfig.json create mode 100644 GWMS.User/compilerconfig.json.defaults diff --git a/.gitignore b/.gitignore index 146064f..541294d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,96 +4,6 @@ *.pdb .vs/* -#-------------------------------- -# Area VersGen -#-------------------------------- -/VersGen/bin/* -/VersGen/obj/* - -#-------------------------------- -# area MapoDb -#-------------------------------- -/MapoDb/bin/* -/MapoDb/obj/* - - -#-------------------------------- -# area MP -#-------------------------------- -/MP/bin/* -/MP/obj/* -MP/logs/*.txt -MP/logs/*.zip -MP-LAND/logs/ - -#-------------------------------- -# Area MP-MON (MoonPro-MONitor) -#-------------------------------- -/MP-MON/logs/*.zip -/MP-MON/logs/*.txt -/MP-MON/bin/* -/MP-MON/obj/* -/MP-MON/WebCharts/*.png - -#-------------------------------- -# Area MP-IO (MoonPro-IO) -#-------------------------------- -/MP-IO/logs/*.zip -/MP-IO/logs/*.txt -/MP-IO/bin/* -/MP-IO/obj/* -/MP-IO/fileUpload/ -!/MP-IO/fileUpload/.PlaceHolder.file - -#-------------------------------- -# Area MP-Admin -#-------------------------------- -/MP-Admin/logs/*.zip -/MP-Admin/logs/*.txt -/MP-Admin/bin/* -/MP-Admin/obj/* -/MP-ADM/logs/*.zip -/MP-ADM/logs/*.txt -/MP-ADM/bin/* -/MP-ADM/obj/* - - -#-------------------------------- -# Area ES3 -#-------------------------------- -/ES3/logs/*.zip -/ES3/logs/*.txt -/ES3/bin/* -/ES3/obj/* - -#-------------------------------- -# Area MoonProTablet -#-------------------------------- -/MP-TAB/logs/*.zip -/MP-TAB/logs/*.txt -/MP-TAB/bin/* -/MP-TAB/obj/* -/MP-TAB/WebCharts/*.png -/MP-TAB/images/macchine/*.* -!/MP-TAB/images/macchine/Steamware.png -/MP-TAB/Files/Disegni/*.pdf -!/MP-TAB/Files/Disegni/ND.pdf -MP-TAB/logs/ - - -#-------------------------------- -# Area MoonPro -#-------------------------------- -/MP-Site/logs/*.zip -/MP-Site/logs/*.txt -/MP-Site/bin/* -/MP-Site/obj/* -/MP-Site/WebCharts/*.png -/MP-Site/images/macchine/*.* -!/MP-Site/images/macchine/Steamware.png - - - # ---> VisualStudio ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. diff --git a/GWMS.User/compilerconfig.json b/GWMS.User/compilerconfig.json new file mode 100644 index 0000000..42a9e0b --- /dev/null +++ b/GWMS.User/compilerconfig.json @@ -0,0 +1,6 @@ +[ + { + "outputFile": "wwwroot/css/site.css", + "inputFile": "wwwroot/css/site.less" + } +] \ No newline at end of file diff --git a/GWMS.User/compilerconfig.json.defaults b/GWMS.User/compilerconfig.json.defaults new file mode 100644 index 0000000..b351931 --- /dev/null +++ b/GWMS.User/compilerconfig.json.defaults @@ -0,0 +1,63 @@ +{ + "compilers": { + "less": { + "autoPrefix": "", + "cssComb": "none", + "ieCompat": true, + "strictMath": false, + "strictUnits": false, + "relativeUrls": true, + "rootPath": "", + "sourceMapRoot": "", + "sourceMapBasePath": "", + "sourceMap": false + }, + "sass": { + "autoPrefix": "", + "includePath": "", + "indentType": "space", + "indentWidth": 2, + "outputStyle": "nested", + "Precision": 5, + "relativeUrls": true, + "sourceMapRoot": "", + "lineFeed": "", + "sourceMap": false + }, + "stylus": { + "sourceMap": false + }, + "babel": { + "sourceMap": false + }, + "coffeescript": { + "bare": false, + "runtimeMode": "node", + "sourceMap": false + }, + "handlebars": { + "root": "", + "noBOM": false, + "name": "", + "namespace": "", + "knownHelpersOnly": false, + "forcePartial": false, + "knownHelpers": [], + "commonjs": "", + "amd": false, + "sourceMap": false + } + }, + "minifiers": { + "css": { + "enabled": true, + "termSemicolons": true, + "gzip": false + }, + "javascript": { + "enabled": true, + "termSemicolons": true, + "gzip": false + } + } +} \ No newline at end of file