Skip to content
This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Commit 6e0650d

Browse files
committed
init project
1 parent aa73e19 commit 6e0650d

40 files changed

Lines changed: 1655 additions & 109 deletions

.gitattributes

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

Lines changed: 21 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
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
53

64
# User-specific files
75
*.suo
@@ -17,21 +15,18 @@
1715
[Dd]ebugPublic/
1816
[Rr]elease/
1917
[Rr]eleases/
20-
x64/
21-
x86/
18+
[Xx]64/
19+
[Xx]86/
20+
[Bb]uild/
2221
bld/
2322
[Bb]in/
2423
[Oo]bj/
25-
[Ll]og/
2624

27-
# Visual Studio 2015/2017 cache/options directory
25+
# Visual Studio 2015 cache/options directory
2826
.vs/
2927
# Uncomment if you have tasks that create the project's static files in wwwroot
3028
#wwwroot/
3129

32-
# Visual Studio 2017 auto generated files
33-
Generated\ Files/
34-
3530
# MSTest test Results
3631
[Tt]est[Rr]esult*/
3732
[Bb]uild[Ll]og.*
@@ -45,29 +40,18 @@ TestResult.xml
4540
[Rr]eleasePS/
4641
dlldata.c
4742

48-
# Benchmark Results
49-
BenchmarkDotNet.Artifacts/
50-
51-
# .NET Core
43+
# DNX
5244
project.lock.json
53-
project.fragment.lock.json
5445
artifacts/
55-
**/Properties/launchSettings.json
5646

57-
# StyleCop
58-
StyleCopReport.xml
59-
60-
# Files built by Visual Studio
6147
*_i.c
6248
*_p.c
6349
*_i.h
6450
*.ilk
6551
*.meta
6652
*.obj
67-
*.iobj
6853
*.pch
6954
*.pdb
70-
*.ipdb
7155
*.pgc
7256
*.pgd
7357
*.rsp
@@ -97,17 +81,13 @@ ipch/
9781
*.sdf
9882
*.cachefile
9983
*.VC.db
100-
*.VC.VC.opendb
10184

10285
# Visual Studio profiler
10386
*.psess
10487
*.vsp
10588
*.vspx
10689
*.sap
10790

108-
# Visual Studio Trace Files
109-
*.e2e
110-
11191
# TFS 2012 Local Workspace
11292
$tf/
11393

@@ -128,14 +108,6 @@ _TeamCity*
128108
# DotCover is a Code Coverage Tool
129109
*.dotCover
130110

131-
# AxoCover is a Code Coverage Tool
132-
.axoCover/*
133-
!.axoCover/settings.json
134-
135-
# Visual Studio code coverage results
136-
*.coverage
137-
*.coveragexml
138-
139111
# NCrunch
140112
_NCrunch_*
141113
.*crunch*.local.xml
@@ -167,25 +139,22 @@ publish/
167139
# Publish Web Output
168140
*.[Pp]ublish.xml
169141
*.azurePubxml
170-
# Note: Comment the next line if you want to checkin your web deploy settings,
171-
# but database connection strings (with potential passwords) will be unencrypted
172-
*.pubxml
173-
*.publishproj
174142

175-
# Microsoft Azure Web App publish settings. Comment the next line if you want to
176-
# checkin your Azure Web App publish settings, but sensitive information contained
177-
# in these scripts will be unencrypted
178-
PublishScripts/
143+
# TODO: Un-comment the next line if you do not want to checkin
144+
# your web deploy settings because they may include unencrypted
145+
# passwords
146+
#*.pubxml
147+
*.publishproj
179148

180149
# NuGet Packages
181150
*.nupkg
182151
# The packages folder can be ignored because of Package Restore
183-
**/[Pp]ackages/*
152+
**/packages/*
184153
# except build/, which is used as an MSBuild target.
185-
!**/[Pp]ackages/build/
154+
!**/packages/build/
186155
# Uncomment if necessary however generally it will be regenerated when needed
187-
#!**/[Pp]ackages/repositories.config
188-
# NuGet v3's project.json files produces more ignorable files
156+
#!**/packages/repositories.config
157+
# NuGet v3's project.json files produces more ignoreable files
189158
*.nuget.props
190159
*.nuget.targets
191160

@@ -197,12 +166,9 @@ csx/
197166
ecf/
198167
rcf/
199168

200-
# Windows Store app package directories and files
169+
# Windows Store app package directory
201170
AppPackages/
202171
BundleArtifacts/
203-
Package.StoreAssociation.xml
204-
_pkginfo.txt
205-
*.appx
206172

207173
# Visual Studio cache files
208174
# files ending in .cache can be ignored
@@ -212,23 +178,16 @@ _pkginfo.txt
212178

213179
# Others
214180
ClientBin/
181+
[Ss]tyle[Cc]op.*
215182
~$*
216183
*~
217184
*.dbmdl
218185
*.dbproj.schemaview
219-
*.jfm
220186
*.pfx
221187
*.publishsettings
188+
node_modules/
222189
orleans.codegen.cs
223190

224-
# Including strong name files can present a security risk
225-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
226-
#*.snk
227-
228-
# Since there are multiple workflows, uncomment next line to ignore bower_components
229-
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
230-
#bower_components/
231-
232191
# RIA/Silverlight projects
233192
Generated_Code/
234193

@@ -239,19 +198,15 @@ _UpgradeReport_Files/
239198
Backup*/
240199
UpgradeLog*.XML
241200
UpgradeLog*.htm
242-
ServiceFabricBackup/
243-
*.rptproj.bak
244201

245202
# SQL Server files
246203
*.mdf
247204
*.ldf
248-
*.ndf
249205

250206
# Business Intelligence projects
251207
*.rdl.data
252208
*.bim.layout
253209
*.bim_*.settings
254-
*.rptproj.rsuser
255210

256211
# Microsoft Fakes
257212
FakesAssemblies/
@@ -261,17 +216,13 @@ FakesAssemblies/
261216

262217
# Node.js Tools for Visual Studio
263218
.ntvs_analysis.dat
264-
node_modules/
265219

266220
# Visual Studio 6 build log
267221
*.plg
268222

269223
# Visual Studio 6 workspace options file
270224
*.opt
271225

272-
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
273-
*.vbw
274-
275226
# Visual Studio LightSwitch build output
276227
**/*.HTMLClient/GeneratedArtifacts
277228
**/*.DesktopClient/GeneratedArtifacts
@@ -280,51 +231,12 @@ node_modules/
280231
**/*.Server/ModelManifest.xml
281232
_Pvt_Extensions
282233

234+
# LightSwitch generated files
235+
GeneratedArtifacts/
236+
ModelManifest.xml
237+
283238
# Paket dependency manager
284239
.paket/paket.exe
285-
paket-files/
286240

287241
# FAKE - F# Make
288242
.fake/
289-
290-
# JetBrains Rider
291-
.idea/
292-
*.sln.iml
293-
294-
# CodeRush
295-
.cr/
296-
297-
# Python Tools for Visual Studio (PTVS)
298-
__pycache__/
299-
*.pyc
300-
301-
# Cake - Uncomment if you are using it
302-
# tools/**
303-
# !tools/packages.config
304-
305-
# Tabs Studio
306-
*.tss
307-
308-
# Telerik's JustMock configuration file
309-
*.jmconfig
310-
311-
# BizTalk build output
312-
*.btp.cs
313-
*.btm.cs
314-
*.odx.cs
315-
*.xsd.cs
316-
317-
# OpenCover UI analysis results
318-
OpenCover/
319-
320-
# Azure Stream Analytics local run output
321-
ASALocalRun/
322-
323-
# MSBuild Binary and Structured Log
324-
*.binlog
325-
326-
# NVidia Nsight GPU debugger configuration file
327-
*.nvuser
328-
329-
# MFractors (Xamarin productivity tool) working folder
330-
.mfractor/

TsAdm.Backend.sln

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26403.7
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TsAdm.Dashboard", "TsAdm.Dashboard\TsAdm.Dashboard.csproj", "{460986A5-103D-4B0F-AC97-2974DB340F73}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TsAdm.Repository", "TsAdm.Repository\TsAdm.Repository.csproj", "{D5AF25EC-E485-4D55-A1D5-428BE1AB22F2}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TsAdm.Domain", "TsAdm.Domain\TsAdm.Domain.csproj", "{99F01900-5483-4D01-8DDD-9513283D9D3A}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TsAdm.Core", "TsAdm.Core\TsAdm.Core.csproj", "{A1B6FE47-5980-47E0-B109-AC0BDEEC40AD}"
13+
EndProject
14+
Global
15+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
16+
Debug|Any CPU = Debug|Any CPU
17+
Release|Any CPU = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
20+
{460986A5-103D-4B0F-AC97-2974DB340F73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{460986A5-103D-4B0F-AC97-2974DB340F73}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{460986A5-103D-4B0F-AC97-2974DB340F73}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{460986A5-103D-4B0F-AC97-2974DB340F73}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{D5AF25EC-E485-4D55-A1D5-428BE1AB22F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{D5AF25EC-E485-4D55-A1D5-428BE1AB22F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{D5AF25EC-E485-4D55-A1D5-428BE1AB22F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{D5AF25EC-E485-4D55-A1D5-428BE1AB22F2}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{99F01900-5483-4D01-8DDD-9513283D9D3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{99F01900-5483-4D01-8DDD-9513283D9D3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{99F01900-5483-4D01-8DDD-9513283D9D3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{99F01900-5483-4D01-8DDD-9513283D9D3A}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{A1B6FE47-5980-47E0-B109-AC0BDEEC40AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{A1B6FE47-5980-47E0-B109-AC0BDEEC40AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{A1B6FE47-5980-47E0-B109-AC0BDEEC40AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{A1B6FE47-5980-47E0-B109-AC0BDEEC40AD}.Release|Any CPU.Build.0 = Release|Any CPU
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
EndGlobal

0 commit comments

Comments
 (0)