Skip to content

Commit 13ec6a3

Browse files
committed
Implemented purging of DLQ messages
0 parents  commit 13ec6a3

16 files changed

Lines changed: 4791 additions & 0 deletions

.editorconfig

Lines changed: 3799 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

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

ServiceBusToolset.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServiceBusToolset", "ServiceBusToolset\ServiceBusToolset.csproj", "{748C2894-A7FB-4CBB-A4BF-D34E7E639B55}"
4+
EndProject
5+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{867D153B-5F5B-4A6A-B076-ECEE9CAE61B2}"
6+
ProjectSection(SolutionItems) = preProject
7+
global.json = global.json
8+
nuget.config = nuget.config
9+
nuget.tools.config = nuget.tools.config
10+
.gitignore = .gitignore
11+
ServiceBusToolset.sln.DotSettings = ServiceBusToolset.sln.DotSettings
12+
EndProjectSection
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+
{748C2894-A7FB-4CBB-A4BF-D34E7E639B55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{748C2894-A7FB-4CBB-A4BF-D34E7E639B55}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{748C2894-A7FB-4CBB-A4BF-D34E7E639B55}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{748C2894-A7FB-4CBB-A4BF-D34E7E639B55}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)