Created
June 24, 2019 05:28
-
-
Save JUNKI555/6a6f752d40be9336fbcd3a8a6130f404 to your computer and use it in GitHub Desktop.
WinMergeでgit管理の.Net Coreプロジェクトを比較するときの除外フィルタ設定
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
## This is a directory/file filter template for WinMerge | |
name: exclude for dotnet core | |
desc: exclude | |
## Select if filter is inclusive or exclusive | |
## Inclusive (loose) filter lets through all items not matching rules | |
## Exclusive filter lets through only items that match to rule | |
## include or exclude | |
def: include | |
## exclude .svn directories | |
d: \.git$ | |
d: \\obj$ | |
d: \\bin$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment