This repository was archived by the owner on Jul 30, 2019. It is now read-only.
File tree 2 files changed +187
-2
lines changed
2 files changed +187
-2
lines changed Original file line number Diff line number Diff line change
1
+ # User-specific files
2
+ * .suo
3
+ * .user
4
+ * .sln.docstates
5
+
6
+ # Build results
7
+
8
+ [Dd ]ebug /
9
+ [Rr ]elease /
10
+ x64 /
11
+ build /
12
+ [Bb ]in /
13
+ [Oo ]bj /
14
+
15
+ # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
16
+ ! packages /* /build /
17
+
18
+ # MSTest test Results
19
+ [Tt ]est [Rr ]esult * /
20
+ [Bb ]uild [Ll ]og. *
21
+
22
+ * _i.c
23
+ * _p.c
24
+ * .ilk
25
+ * .meta
26
+ * .obj
27
+ * .pch
28
+ * .pdb
29
+ * .pgc
30
+ * .pgd
31
+ * .rsp
32
+ * .sbr
33
+ * .tlb
34
+ * .tli
35
+ * .tlh
36
+ * .tmp
37
+ * .tmp_proj
38
+ * .log
39
+ * .vspscc
40
+ * .vssscc
41
+ .builds
42
+ * .pidb
43
+ * .log
44
+ * .scc
45
+
46
+ # OS generated files #
47
+ .DS_Store *
48
+ ehthumbs.db
49
+ Icon ?
50
+ Thumbs.db
51
+
52
+ # Visual C++ cache files
53
+ ipch /
54
+ * .aps
55
+ * .ncb
56
+ * .opensdf
57
+ * .sdf
58
+ * .cachefile
59
+
60
+ # Visual Studio profiler
61
+ * .psess
62
+ * .vsp
63
+ * .vspx
64
+
65
+ # Guidance Automation Toolkit
66
+ * .gpState
67
+
68
+ # ReSharper is a .NET coding add-in
69
+ _ReSharper * /
70
+ * . [Rr ]e [Ss ]harper
71
+
72
+ # TeamCity is a build add-in
73
+ _TeamCity *
74
+
75
+ # DotCover is a Code Coverage Tool
76
+ * .dotCover
77
+
78
+ # NCrunch
79
+ * .ncrunch *
80
+ . * crunch * .local.xml
81
+
82
+ # Installshield output folder
83
+ [Ee ]xpress /
84
+
85
+ # DocProject is a documentation generator add-in
86
+ DocProject /buildhelp /
87
+ DocProject /Help /* .HxT
88
+ DocProject /Help /* .HxC
89
+ DocProject /Help /* .hhc
90
+ DocProject /Help /* .hhk
91
+ DocProject /Help /* .hhp
92
+ DocProject /Help /Html2
93
+ DocProject /Help /html
94
+
95
+ # Click-Once directory
96
+ publish /
97
+
98
+ # Publish Web Output
99
+ * .Publish.xml
100
+
101
+ # NuGet Packages Directory
102
+ # # TODO: If you have NuGet Package Restore enabled, uncomment the next line
103
+ packages /
104
+
105
+ # Windows Azure Build Output
106
+ csx
107
+ * .build.csdef
108
+
109
+ # Windows Store app package directory
110
+ AppPackages /
111
+
112
+ # Others
113
+ sql /
114
+ * .Cache
115
+ ClientBin /
116
+ [Ss ]tyle [Cc ]op. *
117
+ ~$ *
118
+ * ~
119
+ * .dbmdl
120
+ * . [Pp ]ublish.xml
121
+ * .pfx
122
+ * .publishsettings
123
+ modulesbin /
124
+ tempbin /
125
+
126
+ # EPiServer Site file (VPP)
127
+ AppData /
128
+
129
+ # RIA/Silverlight projects
130
+ Generated_Code /
131
+
132
+ # Backup & report files from converting an old project file to a newer
133
+ # Visual Studio version. Backup files are not needed, because we have git ;-)
134
+ _UpgradeReport_Files /
135
+ Backup * /
136
+ UpgradeLog * .XML
137
+ UpgradeLog * .htm
138
+
139
+ # vim
140
+ * .txt~
141
+ * .swp
142
+ * .swo
143
+
144
+ # svn
145
+ .svn
146
+
147
+ # SQL Server files
148
+ ** /App_Data /* .mdf
149
+ ** /App_Data /* .ldf
150
+ ** /App_Data /* .sdf
151
+
152
+
153
+ # LightSwitch generated files
154
+ GeneratedArtifacts /
155
+ _Pvt_Extensions /
156
+ ModelManifest.xml
157
+
158
+ # =========================
159
+ # Windows detritus
160
+ # =========================
161
+
162
+ # Windows image file caches
163
+ Thumbs.db
164
+ ehthumbs.db
165
+
166
+ # Folder config file
167
+ Desktop.ini
168
+
169
+ # Recycle Bin used on file shares
170
+ $RECYCLE.BIN /
171
+
172
+ # Mac desktop service store files
173
+ .DS_Store
174
+
175
+ # SASS Compiler cache
176
+ .sass-cache
177
+
178
+ # Visual Studio 2014 CTP
179
+ ** /* .sln.ide
180
+
181
+ # OpenICF
182
+ ** /version.txt
183
+ ** /AssemblyInfo.cs
184
+ Dist /
185
+ FrameworkProtoBuf /* .cs
Original file line number Diff line number Diff line change 41
41
<Output TaskParameter =" Build" PropertyName =" Build" />
42
42
<Output TaskParameter =" Revision" PropertyName =" Revision" />
43
43
</Version >
44
- <CreateProperty Value =" $(Revision)" Condition =" '$(SVN_REVISION )'=='' " >
44
+ <CreateProperty Value =" $(Revision)" Condition =" '$(GIT_COMMIT )'=='' " >
45
45
<Output TaskParameter =" Value" PropertyName =" SVNRevision" />
46
46
</CreateProperty >
47
- <CreateProperty Value =" $(SVN_REVISION )" Condition =" '$(SVN_REVISION )'!='' " >
47
+ <CreateProperty Value =" $(GIT_COMMIT )" Condition =" '$(GIT_COMMIT )'!='' " >
48
48
<Output TaskParameter =" Value" PropertyName =" SVNRevision" />
49
49
</CreateProperty >
50
50
<Message Text =" $(MSBuildProjectName) Version: $(Major).$(Minor).$(Build).$(Revision) Revision: $(SVNRevision)" />
You can’t perform that action at this time.
0 commit comments