Mercurial .hgignore for Visual Studio 2010 projects

前端 未结 2 1832
面向向阳花
面向向阳花 2020-11-30 16:46

Not to be confused with Mercurial .hgignore for Visual Studio 2008 projects

I was asking whether if that same file can be reused for Visual Studio 2010, or some othe

2条回答
  •  抹茶落季
    2020-11-30 17:24

    The new things are related to MSTest stuff. This is the one that I use:

    # use glob syntax
    syntax: glob
    
    *.obj
    *.pdb
    *.user
    *.aps
    *.pch
    *.vspscc
    *.vssscc
    *_i.c
    *_p.c
    *.ncb
    *.suo
    *.tlb
    *.tlh
    *.bak
    *.[Cc]ache
    *.ilk
    *.log
    *.lib
    *.sbr
    *.scc
    *.DotSettings
    [Bb]in
    [Dd]ebug*/**
    obj/
    [Rr]elease*/**
    _ReSharper*/**
    NDependOut/**
    packages/**
    [Tt]humbs.db
    [Tt]est[Rr]esult*
    [Bb]uild[Ll]og.*
    *.[Pp]ublish.xml
    *.resharper
    *.ncrunch*
    *.ndproj
    

提交回复
热议问题