C#: Remove unnecessary columns

This commit is contained in:
Koen Vlaswinkel
2023-09-22 16:35:15 +02:00
parent 13dd9a6c37
commit 0fea21f3e7
4 changed files with 36 additions and 40 deletions

View File

@@ -1,8 +1,7 @@
/**
* @name Fetch endpoints for use in the model editor (application mode)
* @description A list of 3rd party endpoints (methods and attributes) used in the codebase. Excludes test and generated code.
* @kind problem
* @problem.severity recommendation
* @kind table
* @id csharp/utils/modeleditor/application-mode-endpoints
* @tags modeleditor endpoints application-mode
*/
@@ -22,5 +21,4 @@ where
usage = aUsage(endpoint) and
type = supportedType(endpoint) and
classification = methodClassification(usage)
select usage, apiName, supported.toString(), "supported", endpoint.dllName(), endpoint.dllVersion(),
type, "type", classification, "classification"
select usage, apiName, supported, endpoint.dllName(), endpoint.dllVersion(), type, classification

View File

@@ -1,8 +1,7 @@
/**
* @name Fetch endpoints for use in the model editor (framework mode)
* @description A list of endpoints accessible (methods and attributes) for consumers of the library. Excludes test and generated code.
* @kind problem
* @problem.severity recommendation
* @kind table
* @id csharp/utils/modeleditor/framework-mode-endpoints
* @tags modeleditor endpoints framework-mode
*/
@@ -16,5 +15,4 @@ where
apiName = endpoint.getApiName() and
supported = isSupported(endpoint) and
type = supportedType(endpoint)
select endpoint, apiName, supported.toString(), "supported", endpoint.getFile().getBaseName(),
"library", type, "type", "unknown", "classification"
select endpoint, apiName, supported, endpoint.getFile().getBaseName(), type