Skip to content

Commit 33d8fb6

Browse files
committed
完成架构雏形
1 parent 95d8c0e commit 33d8fb6

File tree

350 files changed

+2928
-14224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

350 files changed

+2928
-14224
lines changed

.gitignore

Lines changed: 220 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,75 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
35

46
# User-specific files
7+
*.rsuser
58
*.suo
69
*.user
10+
*.userosscache
711
*.sln.docstates
812

9-
# Build results
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
1015

16+
# Build results
1117
[Dd]ebug/
18+
[Dd]ebugPublic/
1219
[Rr]elease/
20+
[Rr]eleases/
1321
x64/
22+
x86/
23+
[Aa][Rr][Mm]/
24+
[Aa][Rr][Mm]64/
25+
bld/
1426
[Bb]in/
1527
[Oo]bj/
28+
[Ll]og/
29+
30+
# Visual Studio 2015/2017 cache/options directory
31+
.vs/
32+
# Uncomment if you have tasks that create the project's static files in wwwroot
33+
#wwwroot/
1634

17-
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
18-
!packages/*/build/
35+
# Visual Studio 2017 auto generated files
36+
Generated\ Files/
1937

2038
# MSTest test Results
2139
[Tt]est[Rr]esult*/
2240
[Bb]uild[Ll]og.*
2341

42+
# NUNIT
43+
*.VisualState.xml
44+
TestResult.xml
45+
46+
# Build Results of an ATL Project
47+
[Dd]ebugPS/
48+
[Rr]eleasePS/
49+
dlldata.c
50+
51+
# Benchmark Results
52+
BenchmarkDotNet.Artifacts/
53+
54+
# .NET Core
55+
project.lock.json
56+
project.fragment.lock.json
57+
artifacts/
58+
59+
# StyleCop
60+
StyleCopReport.xml
61+
62+
# Files built by Visual Studio
2463
*_i.c
2564
*_p.c
65+
*_h.h
2666
*.ilk
2767
*.meta
2868
*.obj
69+
*.iobj
2970
*.pch
3071
*.pdb
72+
*.ipdb
3173
*.pgc
3274
*.pgd
3375
*.rsp
@@ -37,43 +79,77 @@ x64/
3779
*.tlh
3880
*.tmp
3981
*.tmp_proj
82+
*_wpftmp.csproj
4083
*.log
4184
*.vspscc
4285
*.vssscc
4386
.builds
4487
*.pidb
45-
*.log
88+
*.svclog
4689
*.scc
4790

91+
# Chutzpah Test files
92+
_Chutzpah*
93+
4894
# Visual C++ cache files
4995
ipch/
5096
*.aps
5197
*.ncb
98+
*.opendb
5299
*.opensdf
53100
*.sdf
54101
*.cachefile
102+
*.VC.db
103+
*.VC.VC.opendb
55104

56105
# Visual Studio profiler
57106
*.psess
58107
*.vsp
59108
*.vspx
109+
*.sap
110+
111+
# Visual Studio Trace Files
112+
*.e2e
113+
114+
# TFS 2012 Local Workspace
115+
$tf/
60116

61117
# Guidance Automation Toolkit
62118
*.gpState
63119

64120
# ReSharper is a .NET coding add-in
65121
_ReSharper*/
66122
*.[Rr]e[Ss]harper
123+
*.DotSettings.user
124+
125+
# JustCode is a .NET coding add-in
126+
.JustCode
67127

68128
# TeamCity is a build add-in
69129
_TeamCity*
70130

71131
# DotCover is a Code Coverage Tool
72132
*.dotCover
73133

134+
# AxoCover is a Code Coverage Tool
135+
.axoCover/*
136+
!.axoCover/settings.json
137+
138+
# Visual Studio code coverage results
139+
*.coverage
140+
*.coveragexml
141+
74142
# NCrunch
75-
*.ncrunch*
143+
_NCrunch_*
76144
.*crunch*.local.xml
145+
nCrunchTemp_*
146+
147+
# MightyMoose
148+
*.mm.*
149+
AutoTest.Net/
150+
151+
# Web workbench (sass)
152+
.sass-cache/
77153

78154
# Installshield output folder
79155
[Ee]xpress/
@@ -92,72 +168,173 @@ DocProject/Help/html
92168
publish/
93169

94170
# Publish Web Output
95-
*.Publish.xml
96-
97-
# NuGet Packages Directory
98-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
99-
#packages/
100-
101-
# Windows Azure Build Output
102-
csx
171+
*.[Pp]ublish.xml
172+
*.azurePubxml
173+
# Note: Comment the next line if you want to checkin your web deploy settings,
174+
# but database connection strings (with potential passwords) will be unencrypted
175+
*.pubxml
176+
*.publishproj
177+
178+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
179+
# checkin your Azure Web App publish settings, but sensitive information contained
180+
# in these scripts will be unencrypted
181+
PublishScripts/
182+
183+
# NuGet Packages
184+
*.nupkg
185+
# The packages folder can be ignored because of Package Restore
186+
**/[Pp]ackages/*
187+
# except build/, which is used as an MSBuild target.
188+
!**/[Pp]ackages/build/
189+
# Uncomment if necessary however generally it will be regenerated when needed
190+
#!**/[Pp]ackages/repositories.config
191+
# NuGet v3's project.json files produces more ignorable files
192+
*.nuget.props
193+
*.nuget.targets
194+
195+
# Microsoft Azure Build Output
196+
csx/
103197
*.build.csdef
104198

105-
# Windows Store app package directory
199+
# Microsoft Azure Emulator
200+
ecf/
201+
rcf/
202+
203+
# Windows Store app package directories and files
106204
AppPackages/
205+
BundleArtifacts/
206+
Package.StoreAssociation.xml
207+
_pkginfo.txt
208+
*.appx
209+
210+
# Visual Studio cache files
211+
# files ending in .cache can be ignored
212+
*.[Cc]ache
213+
# but keep track of directories ending in .cache
214+
!?*.[Cc]ache/
107215

108216
# Others
109-
sql/
110-
*.Cache
111217
ClientBin/
112-
[Ss]tyle[Cc]op.*
113218
~$*
114219
*~
115220
*.dbmdl
116-
*.[Pp]ublish.xml
221+
*.dbproj.schemaview
222+
*.jfm
117223
*.pfx
118224
*.publishsettings
225+
orleans.codegen.cs
226+
227+
# Including strong name files can present a security risk
228+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
229+
#*.snk
230+
231+
# Since there are multiple workflows, uncomment next line to ignore bower_components
232+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
233+
#bower_components/
119234

120235
# RIA/Silverlight projects
121236
Generated_Code/
122237

123-
# Backup & report files from converting an old project file to a newer
124-
# Visual Studio version. Backup files are not needed, because we have git ;-)
238+
# Backup & report files from converting an old project file
239+
# to a newer Visual Studio version. Backup files are not needed,
240+
# because we have git ;-)
125241
_UpgradeReport_Files/
126242
Backup*/
127243
UpgradeLog*.XML
128244
UpgradeLog*.htm
245+
ServiceFabricBackup/
246+
*.rptproj.bak
129247

130248
# SQL Server files
131-
App_Data/*.mdf
132-
App_Data/*.ldf
249+
*.mdf
250+
*.ldf
251+
*.ndf
252+
253+
# Business Intelligence projects
254+
*.rdl.data
255+
*.bim.layout
256+
*.bim_*.settings
257+
*.rptproj.rsuser
258+
*- Backup*.rdl
259+
260+
# Microsoft Fakes
261+
FakesAssemblies/
262+
263+
# GhostDoc plugin setting file
264+
*.GhostDoc.xml
265+
266+
# Node.js Tools for Visual Studio
267+
.ntvs_analysis.dat
268+
node_modules/
269+
270+
# Visual Studio 6 build log
271+
*.plg
272+
273+
# Visual Studio 6 workspace options file
274+
*.opt
275+
276+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
277+
*.vbw
278+
279+
# Visual Studio LightSwitch build output
280+
**/*.HTMLClient/GeneratedArtifacts
281+
**/*.DesktopClient/GeneratedArtifacts
282+
**/*.DesktopClient/ModelManifest.xml
283+
**/*.Server/GeneratedArtifacts
284+
**/*.Server/ModelManifest.xml
285+
_Pvt_Extensions
286+
287+
# Paket dependency manager
288+
.paket/paket.exe
289+
paket-files/
290+
291+
# FAKE - F# Make
292+
.fake/
293+
294+
# JetBrains Rider
295+
.idea/
296+
*.sln.iml
297+
298+
# CodeRush personal settings
299+
.cr/personal
300+
301+
# Python Tools for Visual Studio (PTVS)
302+
__pycache__/
303+
*.pyc
304+
305+
# Cake - Uncomment if you are using it
306+
# tools/**
307+
# !tools/packages.config
133308

309+
# Tabs Studio
310+
*.tss
134311

135-
#LightSwitch generated files
136-
GeneratedArtifacts/
137-
_Pvt_Extensions/
138-
ModelManifest.xml
312+
# Telerik's JustMock configuration file
313+
*.jmconfig
139314

140-
# =========================
141-
# Windows detritus
142-
# =========================
315+
# BizTalk build output
316+
*.btp.cs
317+
*.btm.cs
318+
*.odx.cs
319+
*.xsd.cs
143320

144-
# Windows image file caches
145-
Thumbs.db
146-
ehthumbs.db
321+
# OpenCover UI analysis results
322+
OpenCover/
147323

148-
# Folder config file
149-
Desktop.ini
324+
# Azure Stream Analytics local run output
325+
ASALocalRun/
150326

151-
# Recycle Bin used on file shares
152-
$RECYCLE.BIN/
327+
# MSBuild Binary and Structured Log
328+
*.binlog
153329

154-
# Mac desktop service store files
155-
.DS_Store
156-
/.vs/WebApiClient/v15/Server/sqlite3
157-
/packages/
158-
/.vs/config
330+
# NVidia Nsight GPU debugger configuration file
331+
*.nvuser
159332

160-
/WebApiClient/build/BuildTask
161-
/.vs
333+
# MFractors (Xamarin productivity tool) working folder
334+
.mfractor/
162335

336+
# Local History for Visual Studio
337+
.localhistory/
163338

339+
# BeatPulse healthcheck temp database
340+
healthchecksdb

App/App.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="..\WebApiClientCore\WebApiClientCore.csproj" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<None Update="TextFile.txt">
14+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
15+
</None>
16+
</ItemGroup>
17+
18+
<ProjectExtensions><VisualStudio><UserProperties properties_4launchsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
19+
</Project>

0 commit comments

Comments
 (0)