-
Notifications
You must be signed in to change notification settings - Fork 134
/
.gitignore
111 lines (84 loc) · 2.58 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Common IntelliJ Platform excludes
# User-specific stuff:
**/.idea/**/workspace.xml
**/.idea/**/tasks.xml
**/.idea/**/codeStyleConfig.xml
**/.idea/shelf/*
**/.idea/dictionaries
# Sensitive or high-churn files:
**/.idea/**/dataSources/
**/.idea/**/dataSources.ids
**/.idea/**/dataSources.xml
**/.idea/**/dataSources.local.xml
**/.idea/**/sqlDataSources.xml
**/.idea/**/dynamic.xml
**/.idea/**/uiDesigner.xml
# Rider code (IntelliJ excludes)
# Gradle:
# NOTE: gradle.xml is often also ignored here. This is only required if the gradle.xml
# contains path information, but we've got it configured to use the default wrapper.
# See https://youtrack.jetbrains.com/issue/IDEA-55923 for some more information
.gradle/
rider/.idea/**/libraries
rider/.idea/**/jarRepositories.xml
# NOTE: We normally include *.iml for JetBrains IDEs, but Gradle based projects auto generate
# this on import, so we can happily ignore them. Don't do this for the Rider controlled project!
rider/.idea/**/modules.xml
rider/.idea/**/*.iml
rider/.idea/**/compiler.xml
rider/dependencies
rider/src/main/rdgen/
rider/.intellijPlatform/
# C# solutions (Rider excludes)
# Rider creates nested .idea folders, one for each solution, so we don't get clashes if there are multiple
# solutions in the same folder. This is the reason for the .idea/**/whatever pattern
# Rider auto-generates a lot of the files in the .idea folder:
# .name (from the .sln file)
# modules.xml and .iml files
# contentModel.xml
# (indexLayout.xml should be committed if you add existing folder)
resharper/**/.idea/**/.name
resharper/**/.idea/**/modules.xml
resharper/**/.idea/**/*.iml
resharper/**/.idea/**/contentModel.xml
tools/**/.idea/**/.name
tools/**/.idea/**/modules.xml
tools/**/.idea/**/*.iml
tools/**/.idea/**/contentModel.xml
# Gradle output
rider/build/
rider/buildSrc/build/
resharper/build/
unity/build/
# IntelliJ build output (shouldn't really see these if we're using gradle projects)
rider/**/out/*
# Traditional C# excludes
**/.vs/
*.suo
*.user
[Bb]in
[Oo]bj
# Generated files
**/*.generated.dotSettings
**/*.generated.cs
**/*.Generated.cs
**/*.generated.kt
**/*.generated.xaml
**/*.generated.props
resharper/**/*_lex.cs
resharper/**/*_lex.depends
resharper/**/test/data/**/*.tmp
resharper/**/test/JetTestPackages
# Generated file. Includes the nuget packages from the gradle downloaded SDK
/NuGet.Config
rider/**/testData/**/*.tmp
# Backup & report files from converting an old project file to a newer Visual Studio version
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
Thumbs.db
Desktop.ini
.DS_Store
build/
resharper/_ReSharper.Caches/*
**/*.binlog