Commit 118c9911786511194be583d6e55f980063d8247c

Authored by liuye
0 parents

feat(all):对客户端代码进行规范化管理

Showing 1 changed file with 225 additions and 0 deletions
.gitignore 0 → 100644
  1 +++ a/.gitignore
  1 +## Ignore Visual Studio temporary files, build results, and
  2 +## files generated by popular Visual Studio add-ons.
  3 +
  4 +
  5 +# User-specific files
  6 +*.suo
  7 +*.user
  8 +*.sln.docstates
  9 +
  10 +
  11 +# Build results
  12 +[Dd]ebug/
  13 +[Dd]ebugPublic/
  14 +[Rr]elease/
  15 +x64/
  16 +build/
  17 +bld/
  18 +[Bb]in/
  19 +[Oo]bj/
  20 +
  21 +
  22 +# Roslyn cache directories
  23 +*.ide/
  24 +
  25 +
  26 +# MSTest test Results
  27 +[Tt]est[Rr]esult*/
  28 +[Bb]uild[Ll]og.*
  29 +
  30 +
  31 +#NUNIT
  32 +*.VisualState.xml
  33 +TestResult.xml
  34 +
  35 +
  36 +# Build Results of an ATL Project
  37 +[Dd]ebugPS/
  38 +[Rr]eleasePS/
  39 +dlldata.c
  40 +
  41 +
  42 +*_i.c
  43 +*_p.c
  44 +*_i.h
  45 +*.ilk
  46 +*.meta
  47 +*.obj
  48 +*.pch
  49 +*.pdb
  50 +*.pgc
  51 +*.pgd
  52 +*.rsp
  53 +*.sbr
  54 +*.tlb
  55 +*.tli
  56 +*.tlh
  57 +*.tmp
  58 +*.tmp_proj
  59 +*.log
  60 +*.vspscc
  61 +*.vssscc
  62 +.builds
  63 +*.pidb
  64 +*.svclog
  65 +*.scc
  66 +
  67 +
  68 +# Chutzpah Test files
  69 +_Chutzpah*
  70 +
  71 +
  72 +# Visual C++ cache files
  73 +ipch/
  74 +*.aps
  75 +*.ncb
  76 +*.opensdf
  77 +*.sdf
  78 +*.cachefile
  79 +
  80 +
  81 +# Visual Studio profiler
  82 +*.psess
  83 +*.vsp
  84 +*.vspx
  85 +
  86 +
  87 +# TFS 2012 Local Workspace
  88 +$tf/
  89 +
  90 +
  91 +# Guidance Automation Toolkit
  92 +*.gpState
  93 +
  94 +
  95 +# ReSharper is a .NET coding add-in
  96 +_ReSharper*/
  97 +*.[Rr]e[Ss]harper
  98 +*.DotSettings.user
  99 +
  100 +
  101 +# JustCode is a .NET coding addin-in
  102 +.JustCode
  103 +
  104 +
  105 +# TeamCity is a build add-in
  106 +_TeamCity*
  107 +
  108 +
  109 +# DotCover is a Code Coverage Tool
  110 +*.dotCover
  111 +
  112 +
  113 +# NCrunch
  114 +_NCrunch_*
  115 +.*crunch*.local.xml
  116 +
  117 +
  118 +# MightyMoose
  119 +*.mm.*
  120 +AutoTest.Net/
  121 +
  122 +
  123 +# Web workbench (sass)
  124 +.sass-cache/
  125 +
  126 +
  127 +# Installshield output folder
  128 +[Ee]xpress/
  129 +
  130 +
  131 +# DocProject is a documentation generator add-in
  132 +DocProject/buildhelp/
  133 +DocProject/Help/*.HxT
  134 +DocProject/Help/*.HxC
  135 +DocProject/Help/*.hhc
  136 +DocProject/Help/*.hhk
  137 +DocProject/Help/*.hhp
  138 +DocProject/Help/Html2
  139 +DocProject/Help/html
  140 +
  141 +
  142 +# Click-Once directory
  143 +publish/
  144 +
  145 +
  146 +# Publish Web Output
  147 +*.[Pp]ublish.xml
  148 +*.azurePubxml
  149 +## TODO: Comment the next line if you want to checkin your
  150 +## web deploy settings but do note that will include unencrypted
  151 +## passwords
  152 +#*.pubxml
  153 +
  154 +
  155 +# NuGet Packages Directory
  156 +packages/*
  157 +## TODO: If the tool you use requires repositories.config
  158 +## uncomment the next line
  159 +#!packages/repositories.config
  160 +
  161 +
  162 +# Enable "build/" folder in the NuGet Packages folder since
  163 +# NuGet packages use it for MSBuild targets.
  164 +# This line needs to be after the ignore of the build folder
  165 +# (and the packages folder if the line above has been uncommented)
  166 +!packages/build/
  167 +
  168 +
  169 +# Windows Azure Build Output
  170 +csx/
  171 +*.build.csdef
  172 +
  173 +
  174 +# Windows Store app package directory
  175 +AppPackages/
  176 +
  177 +
  178 +# Others
  179 +sql/
  180 +*.Cache
  181 +ClientBin/
  182 +[Ss]tyle[Cc]op.*
  183 +~$*
  184 +*~
  185 +*.dbmdl
  186 +*.dbproj.schemaview
  187 +*.pfx
  188 +*.publishsettings
  189 +node_modules/
  190 +bower_components/
  191 +
  192 +
  193 +# RIA/Silverlight projects
  194 +Generated_Code/
  195 +
  196 +
  197 +# Backup & report files from converting an old project file
  198 +# to a newer Visual Studio version. Backup files are not needed,
  199 +# because we have git ;-)
  200 +_UpgradeReport_Files/
  201 +Backup*/
  202 +UpgradeLog*.XML
  203 +UpgradeLog*.htm
  204 +
  205 +
  206 +# SQL Server files
  207 +*.mdf
  208 +*.ldf
  209 +
  210 +
  211 +# Business Intelligence projects
  212 +*.rdl.data
  213 +*.bim.layout
  214 +*.bim_*.settings
  215 +
  216 +
  217 +# Microsoft Fakes
  218 +FakesAssemblies/
  219 +
  220 +
  221 +# LightSwitch generated files
  222 +GeneratedArtifacts/
  223 +_Pvt_Extensions/
  224 +ModelManifest.xml
0 225 \ No newline at end of file
... ...