Skip to content

Commit c2117f9

Browse files
committed
Migrate to dotnet-cli
1 parent b7b9f1c commit c2117f9

26 files changed

+371
-1906
lines changed

.gitignore

Lines changed: 136 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,50 @@
44
# User-specific files
55
*.suo
66
*.user
7+
*.userosscache
78
*.sln.docstates
8-
.vs/
99

10-
# Build results
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
1112

13+
# Build results
1214
[Dd]ebug/
15+
[Dd]ebugPublic/
1316
[Rr]elease/
17+
[Rr]eleases/
1418
x64/
15-
build/
19+
x86/
20+
bld/
1621
[Bb]in/
1722
[Oo]bj/
23+
[Ll]og/
1824

19-
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
20-
!packages/*/build/
25+
# Visual Studio 2015 cache/options directory
26+
.vs/
27+
# Uncomment if you have tasks that create the project's static files in wwwroot
28+
#wwwroot/
2129

2230
# MSTest test Results
2331
[Tt]est[Rr]esult*/
2432
[Bb]uild[Ll]og.*
2533

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+
43+
# DNX
44+
project.lock.json
45+
project.fragment.lock.json
46+
artifacts/
47+
2648
*_i.c
2749
*_p.c
50+
*_i.h
2851
*.ilk
2952
*.meta
3053
*.obj
@@ -44,28 +67,42 @@ build/
4467
*.vssscc
4568
.builds
4669
*.pidb
47-
*.log
70+
*.svclog
4871
*.scc
4972

73+
# Chutzpah Test files
74+
_Chutzpah*
75+
5076
# Visual C++ cache files
5177
ipch/
5278
*.aps
5379
*.ncb
80+
*.opendb
5481
*.opensdf
5582
*.sdf
5683
*.cachefile
84+
*.VC.db
85+
*.VC.VC.opendb
5786

5887
# Visual Studio profiler
5988
*.psess
6089
*.vsp
6190
*.vspx
91+
*.sap
92+
93+
# TFS 2012 Local Workspace
94+
$tf/
6295

6396
# Guidance Automation Toolkit
6497
*.gpState
6598

6699
# ReSharper is a .NET coding add-in
67100
_ReSharper*/
68101
*.[Rr]e[Ss]harper
102+
*.DotSettings.user
103+
104+
# JustCode is a .NET coding add-in
105+
.JustCode
69106

70107
# TeamCity is a build add-in
71108
_TeamCity*
@@ -74,8 +111,16 @@ _TeamCity*
74111
*.dotCover
75112

76113
# NCrunch
77-
*.ncrunch*
114+
_NCrunch_*
78115
.*crunch*.local.xml
116+
nCrunchTemp_*
117+
118+
# MightyMoose
119+
*.mm.*
120+
AutoTest.Net/
121+
122+
# Web workbench (sass)
123+
.sass-cache/
79124

80125
# Installshield output folder
81126
[Ee]xpress/
@@ -94,73 +139,118 @@ DocProject/Help/html
94139
publish/
95140

96141
# Publish Web Output
97-
*.Publish.xml
98-
99-
# NuGet Packages Directory
100-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
101-
#packages/
102-
103-
# Windows Azure Build Output
104-
csx
142+
*.[Pp]ublish.xml
143+
*.azurePubxml
144+
# TODO: Comment the next line if you want to checkin your web deploy settings
145+
# but database connection strings (with potential passwords) will be unencrypted
146+
*.pubxml
147+
*.publishproj
148+
149+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
150+
# checkin your Azure Web App publish settings, but sensitive information contained
151+
# in these scripts will be unencrypted
152+
PublishScripts/
153+
154+
# NuGet Packages
155+
*.nupkg
156+
# The packages folder can be ignored because of Package Restore
157+
**/packages/*
158+
# except build/, which is used as an MSBuild target.
159+
!**/packages/build/
160+
# Uncomment if necessary however generally it will be regenerated when needed
161+
#!**/packages/repositories.config
162+
# NuGet v3's project.json files produces more ignoreable files
163+
*.nuget.props
164+
*.nuget.targets
165+
166+
# Microsoft Azure Build Output
167+
csx/
105168
*.build.csdef
106169

107-
# Windows Store app package directory
170+
# Microsoft Azure Emulator
171+
ecf/
172+
rcf/
173+
174+
# Windows Store app package directories and files
108175
AppPackages/
176+
BundleArtifacts/
177+
Package.StoreAssociation.xml
178+
_pkginfo.txt
179+
180+
# Visual Studio cache files
181+
# files ending in .cache can be ignored
182+
*.[Cc]ache
183+
# but keep track of directories ending in .cache
184+
!*.[Cc]ache/
109185

110186
# Others
111-
sql/
112-
*.Cache
113187
ClientBin/
114-
[Ss]tyle[Cc]op.*
115188
~$*
116189
*~
117190
*.dbmdl
118-
*.[Pp]ublish.xml
191+
*.dbproj.schemaview
119192
*.pfx
120193
*.publishsettings
194+
node_modules/
195+
orleans.codegen.cs
196+
197+
# Since there are multiple workflows, uncomment next line to ignore bower_components
198+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
199+
#bower_components/
121200

122201
# RIA/Silverlight projects
123202
Generated_Code/
124203

125-
# Backup & report files from converting an old project file to a newer
126-
# Visual Studio version. Backup files are not needed, because we have git ;-)
204+
# Backup & report files from converting an old project file
205+
# to a newer Visual Studio version. Backup files are not needed,
206+
# because we have git ;-)
127207
_UpgradeReport_Files/
128208
Backup*/
129209
UpgradeLog*.XML
130210
UpgradeLog*.htm
131211

132212
# SQL Server files
133-
App_Data/*.mdf
134-
App_Data/*.ldf
213+
*.mdf
214+
*.ldf
135215

216+
# Business Intelligence projects
217+
*.rdl.data
218+
*.bim.layout
219+
*.bim_*.settings
136220

137-
#LightSwitch generated files
138-
GeneratedArtifacts/
139-
_Pvt_Extensions/
140-
ModelManifest.xml
221+
# Microsoft Fakes
222+
FakesAssemblies/
141223

142-
# =========================
143-
# Windows detritus
144-
# =========================
224+
# GhostDoc plugin setting file
225+
*.GhostDoc.xml
145226

146-
# Windows image file caches
147-
Thumbs.db
148-
ehthumbs.db
227+
# Node.js Tools for Visual Studio
228+
.ntvs_analysis.dat
149229

150-
# Folder config file
151-
Desktop.ini
230+
# Visual Studio 6 build log
231+
*.plg
152232

153-
# Recycle Bin used on file shares
154-
$RECYCLE.BIN/
233+
# Visual Studio 6 workspace options file
234+
*.opt
155235

156-
# Mac desktop service store files
157-
.DS_Store
236+
# Visual Studio LightSwitch build output
237+
**/*.HTMLClient/GeneratedArtifacts
238+
**/*.DesktopClient/GeneratedArtifacts
239+
**/*.DesktopClient/ModelManifest.xml
240+
**/*.Server/GeneratedArtifacts
241+
**/*.Server/ModelManifest.xml
242+
_Pvt_Extensions
158243

159-
packages
160-
*.nupkg
244+
# Paket dependency manager
245+
.paket/paket.exe
246+
paket-files/
161247

162-
# =========================
163-
# MonoDevelop
164-
# =========================
248+
# FAKE - F# Make
249+
.fake/
165250

166-
*.userprefs
251+
# JetBrains Rider
252+
.idea/
253+
*.sln.iml
254+
255+
# CodeRush
256+
.cr/

.nuget/NuGet.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

.nuget/NuGet.exe

-1.59 MB
Binary file not shown.

0 commit comments

Comments
 (0)