Skip to content

Commit 5c00d05

Browse files
committed
Merge branch 'version-5' of github.com:typinghard/azure-devops-state-tracker into version-6
2 parents d872a0d + 48aeb70 commit 5c00d05

File tree

83 files changed

+685
-455
lines changed

Some content is hidden

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

83 files changed

+685
-455
lines changed

.github/codewoners

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.sln @DiegoGalante @ElvisCSouza
2+
*.csproj @DiegoGalante @ElvisCSouza
3+
*.cs @DiegoGalantee @ElvisCSouza
4+
5+
*.* @DiegoGalante @ElvisCSouza
6+
7+
.github/ @DiegoGalante

.github/pull_request_template.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Description
2+
3+
> Please include a summary of the change here and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
4+
5+
## Type of change
6+
7+
Please delete options that are not relevant.
8+
9+
- [ ] Bug fix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] This change requires a documentation update
13+
14+
## Fixes
15+
Please delete options that are not relevant.
16+
17+
\# (issue)
18+
19+
## How Has This Been Tested
20+
21+
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
22+
23+
- [ ] Unit Tests
24+
- [ ] Integration Tests
25+
- [ ] Web application using this dll + postman
26+
27+
## Checklist
28+
- [ ] My code follows the style guidelines of this project
29+
- [ ] I have performed a self-review of my own code
30+
- [ ] I checked the PR checks reports
31+
- [ ] I have commented my code, particularly in hard-to-understand areas
32+
- [ ] I have made corresponding changes to the documentation
33+
- [ ] My changes generate no new warnings
34+
- [ ] I have added tests that prove my fix is effective or that my feature works

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,3 +348,9 @@ MigrationBackup/
348348

349349
# Ionide (cross platform F# VS Code tools) working folder
350350
.ionide/
351+
352+
.sonarqube
353+
354+
*.bat
355+
356+
*.xml

AzureDevopsTracker.sln

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32616.157
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureDevopsTracker", "src\AzureDevopsTracker.csproj", "{36601E24-C989-4E11-BD8F-572F2F181ED1}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{816B80C1-D0DA-4925-817C-692A5995BCB2}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{035AD571-2D23-4A55-9FBB-1E99758306C8}"
11+
EndProject
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzureDevopsTracker.Tests", "tests\AzureDevopsTracker.Tests\AzureDevopsTracker.Tests.csproj", "{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D}"
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+
{36601E24-C989-4E11-BD8F-572F2F181ED1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{36601E24-C989-4E11-BD8F-572F2F181ED1}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{36601E24-C989-4E11-BD8F-572F2F181ED1}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{36601E24-C989-4E11-BD8F-572F2F181ED1}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D}.Release|Any CPU.Build.0 = Release|Any CPU
28+
EndGlobalSection
29+
GlobalSection(SolutionProperties) = preSolution
30+
HideSolutionNode = FALSE
31+
EndGlobalSection
32+
GlobalSection(NestedProjects) = preSolution
33+
{36601E24-C989-4E11-BD8F-572F2F181ED1} = {035AD571-2D23-4A55-9FBB-1E99758306C8}
34+
{BA1D5DF9-E25A-4984-8072-8CA3C5FC638D} = {816B80C1-D0DA-4925-817C-692A5995BCB2}
35+
EndGlobalSection
36+
GlobalSection(ExtensibilityGlobals) = postSolution
37+
SolutionGuid = {53133A2B-5357-47B5-A1C4-30953F789623}
38+
EndGlobalSection
39+
EndGlobal

AzureDevopsTracker/AzureDevopsTracker.sln

Lines changed: 0 additions & 25 deletions
This file was deleted.

AzureDevopsTracker/DTOs/WorkItemDTO.cs

Lines changed: 0 additions & 100 deletions
This file was deleted.

AzureDevopsTracker/Helpers/MarkdownHelper.cs

Lines changed: 0 additions & 10 deletions
This file was deleted.

AzureDevopsTracker/Helpers/MicrosoftTeamsHelper.cs

Lines changed: 0 additions & 10 deletions
This file was deleted.

AzureDevopsTracker/Integrations/MessageBaseIntegration.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

AzureDevopsTracker/Interfaces/IAzureDevopsTrackerService.cs

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)