Skip to content

Commit 52740e9

Browse files
committed
Use FAKE.BuildLib
1 parent 3870044 commit 52740e9

19 files changed

+334
-210
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*.{cs, py, fsx}]
4+
indent_style = space
5+
indent_size = 4
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
9+
[*.{json, xml}]
10+
indent_style = space
11+
indent_size = 2

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 10 additions & 159 deletions
Original file line numberDiff line numberDiff line change
@@ -1,145 +1,41 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
41
# User-specific files
52
*.suo
63
*.user
74
*.userosscache
85
*.sln.docstates
96

10-
# User-specific files (MonoDevelop/Xamarin Studio)
11-
*.userprefs
12-
137
# Build results
148
[Dd]ebug/
159
[Dd]ebugPublic/
1610
[Rr]elease/
1711
[Rr]eleases/
1812
x64/
1913
x86/
14+
build/
2015
bld/
2116
[Bb]in/
2217
[Oo]bj/
2318

19+
# Coverity output
20+
cov-int/
21+
2422
# Visual Studio 2015 cache/options directory
2523
.vs/
2624

27-
# Visual Studio Code profile directory
28-
.vscode/
29-
30-
# MSTest test Results
31-
[Tt]est[Rr]esult*/
32-
[Bb]uild[Ll]og.*
33-
34-
# NUNIT
35-
*.VisualState.xml
36-
TestResult.xml
37-
38-
# Build Results of an ATL Project
39-
[Dd]ebugPS/
40-
[Rr]eleasePS/
41-
dlldata.c
42-
4325
# DNX
4426
project.lock.json
4527
artifacts/
4628

47-
*_i.c
48-
*_p.c
49-
*_i.h
50-
*.ilk
51-
*.obj
52-
*.pch
53-
*.pdb
54-
*.pgc
55-
*.pgd
56-
*.rsp
57-
*.sbr
58-
*.tlb
59-
*.tli
60-
*.tlh
61-
*.tmp
62-
*.tmp_proj
63-
*.log
64-
*.vspscc
65-
*.vssscc
66-
.builds
67-
*.pidb
68-
*.svclog
69-
*.scc
70-
71-
# Chutzpah Test files
72-
_Chutzpah*
73-
74-
# Visual C++ cache files
75-
ipch/
76-
*.aps
77-
*.ncb
78-
*.opensdf
79-
*.sdf
80-
*.cachefile
81-
8229
# Visual Studio profiler
8330
*.psess
8431
*.vsp
8532
*.vspx
8633

87-
# TFS 2012 Local Workspace
88-
$tf/
89-
90-
# Guidance Automation Toolkit
91-
*.gpState
92-
93-
# ReSharper is a .NET coding add-in
94-
_ReSharper*/
95-
*.[Rr]e[Ss]harper
96-
*.DotSettings.user
97-
98-
# JustCode is a .NET coding add-in
99-
.JustCode
100-
101-
# TeamCity is a build add-in
102-
_TeamCity*
103-
104-
# DotCover is a Code Coverage Tool
105-
*.dotCover
106-
107-
# NCrunch
108-
_NCrunch_*
109-
.*crunch*.local.xml
110-
111-
# MightyMoose
112-
*.mm.*
113-
AutoTest.Net/
114-
115-
# Web workbench (sass)
116-
.sass-cache/
117-
118-
# Installshield output folder
119-
[Ee]xpress/
120-
121-
# DocProject is a documentation generator add-in
122-
DocProject/buildhelp/
123-
DocProject/Help/*.HxT
124-
DocProject/Help/*.HxC
125-
DocProject/Help/*.hhc
126-
DocProject/Help/*.hhk
127-
DocProject/Help/*.hhp
128-
DocProject/Help/Html2
129-
DocProject/Help/html
34+
# Visual Studio Code
35+
.vscode
13036

13137
# Click-Once directory
132-
publish/
133-
134-
# Publish Web Output
135-
*.[Pp]ublish.xml
136-
*.azurePubxml
137-
## TODO: Comment the next line if you want to checkin your
138-
## web deploy settings but do note that will include unencrypted
139-
## passwords
140-
#*.pubxml
141-
142-
*.publishproj
38+
[Pp]ublish/
14339

14440
# NuGet Packages
14541
*.nupkg
@@ -163,53 +59,8 @@ AppPackages/
16359
# but keep track of directories ending in .cache
16460
!*.[Cc]ache/
16561

166-
# Others
167-
ClientBin/
168-
[Ss]tyle[Cc]op.*
169-
~$*
170-
*~
171-
*.dbmdl
172-
*.dbproj.schemaview
173-
*.pfx
174-
*.publishsettings
175-
node_modules/
176-
orleans.codegen.cs
62+
# Fake
17763
.fake/
17864

179-
# RIA/Silverlight projects
180-
Generated_Code/
181-
182-
# Backup & report files from converting an old project file
183-
# to a newer Visual Studio version. Backup files are not needed,
184-
# because we have git ;-)
185-
_UpgradeReport_Files/
186-
Backup*/
187-
UpgradeLog*.XML
188-
UpgradeLog*.htm
189-
190-
# SQL Server files
191-
*.mdf
192-
*.ldf
193-
194-
# Business Intelligence projects
195-
*.rdl.data
196-
*.bim.layout
197-
*.bim_*.settings
198-
199-
# Microsoft Fakes
200-
FakesAssemblies/
201-
202-
# Node.js Tools for Visual Studio
203-
.ntvs_analysis.dat
204-
205-
# Visual Studio 6 build log
206-
*.plg
207-
208-
# Visual Studio 6 workspace options file
209-
*.opt
210-
211-
# LightSwitch generated files
212-
GeneratedArtifacts/
213-
_Pvt_Extensions/
214-
ModelManifest.xml
215-
samples/Basic/Compiler/compilation log.txt
65+
# No APK
66+
*.apk

0 commit comments

Comments
 (0)