-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddVsTestPackage.yaml
More file actions
40 lines (36 loc) · 1.17 KB
/
AddVsTestPackage.yaml
File metadata and controls
40 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# AddVsTestPackage
#
# This SpdxTool workflow file adds a VSTest package entry to an SPDX
# document. The VSTest package information was attained from:
# - https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options
# - https://github.com/microsoft/vstest?tab=MIT-1-ov-file
#
# Parameters:
# - spdx # SPDX document file name
# - id # VSTest Package ID
# - version # VSTest Package version
#
# Outputs:
# none
parameters:
spdx: ''
version: ''
id: 'SPDXRef-Package-VSTest'
steps:
# Add the VSTest package
- command: add-package
inputs:
spdx: ${{ spdx }}
package:
id: ${{ id }}
name: Visual Studio Test Platform
download: NOASSERTION
license: MIT
copyright: Copyright (c) Microsoft Corporation
version: ${{ version }}
supplier: 'Organization: Microsoft Corporation'
originator: 'Organization: Microsoft Corporation'
homepage: https://learn.microsoft.com/en-us/visualstudio/test/vstest-console-options
summary: VSTest.Console.exe is the command-line tool to run tests.
purl: pkg:github/microsoft/vstest@v${{ version }}
relationships: []