Skip to content

Commit eef0c25

Browse files
[csharp][booking][01_base] Add Project and .gitignore
1 parent 8f3b1d8 commit eef0c25

File tree

3 files changed

+246
-0
lines changed

3 files changed

+246
-0
lines changed

examples/csharp/.gitignore

Lines changed: 195 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
7+
*.rsuser
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Mono auto generated files
17+
mono_crash.*
18+
19+
# Build results
20+
[Dd]ebug/
21+
[Dd]ebugPublic/
22+
[Rr]elease/
23+
[Rr]eleases/
24+
x64/
25+
x86/
26+
[Ww][Ii][Nn]32/
27+
[Aa][Rr][Mm]/
28+
[Aa][Rr][Mm]64/
29+
bld/
30+
[Bb]in/
31+
[Oo]bj/
32+
[Ll]og/
33+
[Ll]ogs/
34+
35+
# Visual Studio 2015/2017 cache/options directory
36+
.vs/
37+
# Uncomment if you have tasks that create the project's static files in wwwroot
38+
#wwwroot/
39+
40+
# Visual Studio 2017 auto generated files
41+
Generated\ Files/
42+
43+
# MSTest test Results
44+
[Tt]est[Rr]esult*/
45+
[Bb]uild[Ll]og.*
46+
47+
# NUnit
48+
*.VisualState.xml
49+
TestResult.xml
50+
nunit-*.xml
51+
52+
# Build Results of an ATL Project
53+
[Dd]ebugPS/
54+
[Rr]eleasePS/
55+
dlldata.c
56+
57+
# Benchmark Results
58+
BenchmarkDotNet.Artifacts/
59+
60+
# .NET Core
61+
project.lock.json
62+
project.fragment.lock.json
63+
artifacts/
64+
65+
# ASP.NET Scaffolding
66+
ScaffoldingReadMe.txt
67+
68+
# StyleCop
69+
StyleCopReport.xml
70+
71+
# Files built by Visual Studio
72+
*_i.c
73+
*_p.c
74+
*_h.h
75+
*.ilk
76+
*.meta
77+
*.obj
78+
*.iobj
79+
*.pch
80+
*.pdb
81+
*.ipdb
82+
*.pgc
83+
*.pgd
84+
*.rsp
85+
*.sbr
86+
*.tlb
87+
*.tli
88+
*.tlh
89+
*.tmp
90+
*.tmp_proj
91+
*_wpftmp.csproj
92+
*.log
93+
*.vspscc
94+
*.vssscc
95+
.builds
96+
*.pidb
97+
*.svclog
98+
*.scc
99+
100+
# Visual C++ cache files
101+
ipch/
102+
*.aps
103+
*.ncb
104+
*.opendb
105+
*.opensdf
106+
*.sdf
107+
*.cachefile
108+
*.VC.db
109+
*.VC.VC.opendb
110+
111+
# Visual Studio profiler
112+
*.psess
113+
*.vsp
114+
*.vspx
115+
*.sap
116+
117+
# Visual Studio Trace Files
118+
*.e2e
119+
120+
# ReSharper is a .NET coding add-in
121+
_ReSharper*/
122+
*.[Rr]e[Ss]harper
123+
*.DotSettings.user
124+
125+
# DotCover is a Code Coverage Tool
126+
*.dotCover
127+
128+
# Visual Studio code coverage results
129+
*.coverage
130+
*.coveragexml
131+
132+
# Web workbench (sass)
133+
.sass-cache/
134+
135+
# Click-Once directory
136+
publish/
137+
138+
# Publish Web Output
139+
*.[Pp]ublish.xml
140+
*.azurePubxml
141+
# Note: Comment the next line if you want to checkin your web deploy settings,
142+
# but database connection strings (with potential passwords) will be unencrypted
143+
*.pubxml
144+
*.publishproj
145+
146+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
147+
# checkin your Azure Web App publish settings, but sensitive information contained
148+
# in these scripts will be unencrypted
149+
PublishScripts/
150+
151+
# NuGet Packages
152+
*.nupkg
153+
# NuGet Symbol Packages
154+
*.snupkg
155+
# The packages folder can be ignored because of Package Restore
156+
**/[Pp]ackages/*
157+
# except build/, which is used as an MSBuild target.
158+
!**/[Pp]ackages/build/
159+
# Uncomment if necessary however generally it will be regenerated when needed
160+
#!**/[Pp]ackages/repositories.config
161+
# NuGet v3's project.json files produces more ignorable files
162+
*.nuget.props
163+
*.nuget.targets
164+
165+
# Visual Studio cache files
166+
# files ending in .cache can be ignored
167+
*.[Cc]ache
168+
# but keep track of directories ending in .cache
169+
!?*.[Cc]ache/
170+
171+
# Others
172+
ClientBin/
173+
~$*
174+
*~
175+
*.dbmdl
176+
*.dbproj.schemaview
177+
*.jfm
178+
*.pfx
179+
*.publishsettings
180+
orleans.codegen.cs
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+
ServiceFabricBackup/
190+
*.rptproj.bak
191+
192+
# SQL Server files
193+
*.mdf
194+
*.ldf
195+
*.ndf
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<RootNamespace>tv.codely</RootNamespace>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
10+
<PackageReference Include="xunit" Version="2.4.1" />
11+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"/>
12+
</ItemGroup>
13+
14+
</Project>

examples/csharp/csharp.sln

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30626.31
5+
MinimumVisualStudioVersion = 15.0.26124.0
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "csharp-booking-01_base", "csharp-booking-01_base\csharp-booking-01_base.csproj", "{E268D5F9-53C4-4AFE-8726-A69B0405E97C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|x64.ActiveCfg = Debug|Any CPU
21+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|x64.Build.0 = Debug|Any CPU
22+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|x86.ActiveCfg = Debug|Any CPU
23+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Debug|x86.Build.0 = Debug|Any CPU
24+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|x64.ActiveCfg = Release|Any CPU
27+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|x64.Build.0 = Release|Any CPU
28+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|x86.ActiveCfg = Release|Any CPU
29+
{E268D5F9-53C4-4AFE-8726-A69B0405E97C}.Release|x86.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {A9B83075-4808-4A9E-8C77-26CC1263045F}
36+
EndGlobalSection
37+
EndGlobal

0 commit comments

Comments
 (0)