-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d91cbe
commit c49377d
Showing
14 changed files
with
167 additions
and
21 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...ties/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/ArtifactLocationDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class ArtifactLocationDto | ||
{ | ||
public string Uri { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...rces/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/DriverDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class DriverDto | ||
{ | ||
public RuleDto[] Rules { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...es/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/LocationDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class LocationDto | ||
{ | ||
public PhysicalLocationDto PhysicalLocation { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
...ties/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/PhysicalLocationDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class PhysicalLocationDto | ||
{ | ||
public ArtifactLocationDto ArtifactLocation { get; set; } | ||
|
||
public RegionDto Region { get; set; } | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...rces/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/RegionDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class RegionDto | ||
{ | ||
public int StartLine { get; set; } | ||
|
||
public int StartColumn { get; set; } | ||
|
||
public int EndLine { get; set; } | ||
|
||
public int EndColumn { get; set; } | ||
|
||
public int CharOffset { get; set; } | ||
|
||
public int CharLength { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...tilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/RelationshipDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class RelationshipDto | ||
{ | ||
public TargetDto Target { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...rces/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/ReportDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class ReportDto | ||
{ | ||
public RunDto[] Runs { get; set; } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...rces/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/ResultDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class ResultDto | ||
{ | ||
public string RuleId { get; set; } | ||
|
||
public TextDto Message { get; set; } | ||
|
||
public LocationDto[] Locations { get; set; } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
Resources/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/RuleDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class RuleDto | ||
{ | ||
public string Id { get; set; } | ||
|
||
public TextDto FullDescription { get; set; } | ||
|
||
public TextDto ShortDescription { get; set; } | ||
|
||
public RelationshipDto[] Relationships { get; set; } | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
Resources/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/RunDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class RunDto | ||
{ | ||
public ResultDto[] Results { get; set; } | ||
|
||
public ToolDto Tool { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
...rces/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/TargetDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class TargetDto | ||
{ | ||
public string Id { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
Resources/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/TextDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class TextDto | ||
{ | ||
public string Text { get; set; } | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
Resources/Utilities/ConvertReSharperReportToHtml/ConvertReSharperReportToHtml/Dto/ToolDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace ConvertReSharperReportToHtml | ||
{ | ||
internal sealed class ToolDto | ||
{ | ||
public DriverDto Driver { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters