Skip to content

Commit baabef7

Browse files
committed
Adding workshop projects and files
Signed-off-by: André Silva <[email protected]>
1 parent 89496bf commit baabef7

File tree

93 files changed

+65105
-1
lines changed

Some content is hidden

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

93 files changed

+65105
-1
lines changed

.gitignore

Lines changed: 350 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,350 @@
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+
*.suo
8+
*.user
9+
*.userosscache
10+
*.sln.docstates
11+
.devcontainer/
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Dd]ebugPublic/
19+
[Rr]elease/
20+
[Rr]eleases/
21+
x64/
22+
x86/
23+
bld/
24+
[Bb]in/
25+
[Oo]bj/
26+
[Ll]og/
27+
28+
# DocFx output
29+
_api/
30+
_site/
31+
32+
# Visual Studio 2015/2017 cache/options directory
33+
.vs/
34+
# Uncomment if you have tasks that create the project's static files in wwwroot
35+
#wwwroot/
36+
37+
# Visual Studio 2017 auto generated files
38+
Generated\ Files/
39+
40+
# MSTest test Results
41+
[Tt]est[Rr]esult*/
42+
[Bb]uild[Ll]og.*
43+
44+
# NUNIT
45+
*.VisualState.xml
46+
TestResult.xml
47+
48+
# Build Results of an ATL Project
49+
[Dd]ebugPS/
50+
[Rr]eleasePS/
51+
dlldata.c
52+
53+
# Benchmark Results
54+
BenchmarkDotNet.Artifacts/
55+
56+
# .NET Core
57+
project.lock.json
58+
project.fragment.lock.json
59+
artifacts/
60+
**/Properties/launchSettings.json
61+
62+
# StyleCop
63+
StyleCopReport.xml
64+
65+
# Files built by Visual Studio
66+
*_i.c
67+
*_p.c
68+
*_i.h
69+
*.ilk
70+
*.meta
71+
*.obj
72+
*.iobj
73+
*.pch
74+
*.pdb
75+
*.ipdb
76+
*.pgc
77+
*.pgd
78+
*.rsp
79+
*.sbr
80+
*.tlb
81+
*.tli
82+
*.tlh
83+
*.tmp
84+
*.tmp_proj
85+
*.log
86+
*.vspscc
87+
*.vssscc
88+
.builds
89+
*.pidb
90+
*.svclog
91+
*.scc
92+
93+
# Chutzpah Test files
94+
_Chutzpah*
95+
96+
# Visual C++ cache files
97+
ipch/
98+
*.aps
99+
*.ncb
100+
*.opendb
101+
*.opensdf
102+
*.sdf
103+
*.cachefile
104+
*.VC.db
105+
*.VC.VC.opendb
106+
107+
# Visual Studio profiler
108+
*.psess
109+
*.vsp
110+
*.vspx
111+
*.sap
112+
113+
# Visual Studio Trace Files
114+
*.e2e
115+
116+
# TFS 2012 Local Workspace
117+
$tf/
118+
119+
# Guidance Automation Toolkit
120+
*.gpState
121+
122+
# ReSharper is a .NET coding add-in
123+
_ReSharper*/
124+
*.[Rr]e[Ss]harper
125+
*.DotSettings.user
126+
127+
# JustCode is a .NET coding add-in
128+
.JustCode
129+
130+
# TeamCity is a build add-in
131+
_TeamCity*
132+
133+
# DotCover is a Code Coverage Tool
134+
*.dotCover
135+
136+
# AxoCover is a Code Coverage Tool
137+
.axoCover/*
138+
!.axoCover/settings.json
139+
140+
# Visual Studio code coverage results
141+
*.coverage
142+
*.coveragexml
143+
144+
# NCrunch
145+
_NCrunch_*
146+
.*crunch*.local.xml
147+
nCrunchTemp_*
148+
149+
# MightyMoose
150+
*.mm.*
151+
AutoTest.Net/
152+
153+
# Web workbench (sass)
154+
.sass-cache/
155+
156+
# Installshield output folder
157+
[Ee]xpress/
158+
159+
# DocProject is a documentation generator add-in
160+
DocProject/buildhelp/
161+
DocProject/Help/*.HxT
162+
DocProject/Help/*.HxC
163+
DocProject/Help/*.hhc
164+
DocProject/Help/*.hhk
165+
DocProject/Help/*.hhp
166+
DocProject/Help/Html2
167+
DocProject/Help/html
168+
169+
# Click-Once directory
170+
publish/
171+
172+
# Publish Web Output
173+
*.[Pp]ublish.xml
174+
*.azurePubxml
175+
# Note: Comment the next line if you want to checkin your web deploy settings,
176+
# but database connection strings (with potential passwords) will be unencrypted
177+
*.pubxml
178+
*.publishproj
179+
180+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181+
# checkin your Azure Web App publish settings, but sensitive information contained
182+
# in these scripts will be unencrypted
183+
PublishScripts/
184+
185+
# NuGet Packages
186+
*.nupkg
187+
# The packages folder can be ignored because of Package Restore
188+
**/[Pp]ackages/*
189+
# except build/, which is used as an MSBuild target.
190+
!**/[Pp]ackages/build/
191+
# Uncomment if necessary however generally it will be regenerated when needed
192+
#!**/[Pp]ackages/repositories.config
193+
# NuGet v3's project.json files produces more ignorable files
194+
*.nuget.props
195+
*.nuget.targets
196+
197+
# Microsoft Azure Build Output
198+
csx/
199+
*.build.csdef
200+
201+
# Microsoft Azure Emulator
202+
ecf/
203+
rcf/
204+
205+
# Windows Store app package directories and files
206+
AppPackages/
207+
BundleArtifacts/
208+
Package.StoreAssociation.xml
209+
_pkginfo.txt
210+
*.appx
211+
212+
# Visual Studio cache files
213+
# files ending in .cache can be ignored
214+
*.[Cc]ache
215+
# but keep track of directories ending in .cache
216+
!*.[Cc]ache/
217+
218+
# Others
219+
ClientBin/
220+
~$*
221+
*~
222+
*.dbmdl
223+
*.dbproj.schemaview
224+
*.jfm
225+
*.pfx
226+
*.publishsettings
227+
orleans.codegen.cs
228+
229+
# Including strong name files can present a security risk
230+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
231+
#*.snk
232+
233+
# Since there are multiple workflows, uncomment next line to ignore bower_components
234+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
235+
#bower_components/
236+
237+
# RIA/Silverlight projects
238+
Generated_Code/
239+
240+
# Backup & report files from converting an old project file
241+
# to a newer Visual Studio version. Backup files are not needed,
242+
# because we have git ;-)
243+
_UpgradeReport_Files/
244+
Backup*/
245+
UpgradeLog*.XML
246+
UpgradeLog*.htm
247+
ServiceFabricBackup/
248+
*.rptproj.bak
249+
250+
# SQL Server files
251+
*.mdf
252+
*.ldf
253+
*.ndf
254+
255+
# Business Intelligence projects
256+
*.rdl.data
257+
*.bim.layout
258+
*.bim_*.settings
259+
*.rptproj.rsuser
260+
261+
# Microsoft Fakes
262+
FakesAssemblies/
263+
264+
# GhostDoc plugin setting file
265+
*.GhostDoc.xml
266+
267+
# Node.js Tools for Visual Studio
268+
.ntvs_analysis.dat
269+
node_modules/
270+
271+
# Visual Studio 6 build log
272+
*.plg
273+
274+
# Visual Studio 6 workspace options file
275+
*.opt
276+
277+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
278+
*.vbw
279+
280+
# Visual Studio LightSwitch build output
281+
**/*.HTMLClient/GeneratedArtifacts
282+
**/*.DesktopClient/GeneratedArtifacts
283+
**/*.DesktopClient/ModelManifest.xml
284+
**/*.Server/GeneratedArtifacts
285+
**/*.Server/ModelManifest.xml
286+
_Pvt_Extensions
287+
288+
# Paket dependency manager
289+
.paket/paket.exe
290+
paket-files/
291+
292+
# FAKE - F# Make
293+
.fake/
294+
295+
# JetBrains Rider
296+
.idea/
297+
*.sln.iml
298+
299+
# macOS
300+
.DS_Store
301+
302+
# CodeRush
303+
.cr/
304+
305+
# Python Tools for Visual Studio (PTVS)
306+
__pycache__/
307+
*.pyc
308+
309+
# Cake - Uncomment if you are using it
310+
# tools/**
311+
# !tools/packages.config
312+
313+
# Tabs Studio
314+
*.tss
315+
316+
# Telerik's JustMock configuration file
317+
*.jmconfig
318+
319+
# BizTalk build output
320+
*.btp.cs
321+
*.btm.cs
322+
*.odx.cs
323+
*.xsd.cs
324+
325+
# OpenCover UI analysis results
326+
OpenCover/
327+
328+
# Azure Stream Analytics local run output
329+
ASALocalRun/
330+
331+
# MSBuild Binary and Structured Log
332+
*.binlog
333+
334+
# NVidia Nsight GPU debugger configuration file
335+
*.nvuser
336+
337+
# MFractors (Xamarin productivity tool) working folder
338+
.mfractor/
339+
340+
# SonarQube folder
341+
/.sonarqube
342+
343+
/src/LastMajorVersionBinaries
344+
345+
# vscode
346+
.vscode/*
347+
!.vscode/settings.json
348+
!.vscode/tasks.json
349+
!.vscode/launch.json
350+
!.vscode/extensions.json

Garage.slnx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Solution>
2+
<Folder Name="/src/">
3+
<Project Path="src/Garage.ApiService/Garage.ApiService.csproj" />
4+
<Project Path="src/Garage.AppHost/Garage.AppHost.csproj" />
5+
<Project Path="src/Garage.ServiceDefaults/Garage.ServiceDefaults.csproj" />
6+
<Project Path="src/Garage.Shared/Garage.Shared.csproj" />
7+
<Project Path="src/Garage.Web/Garage.Web.csproj" />
8+
</Folder>
9+
</Solution>

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 André Silva
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)