English 中文(简体)
D. 《发展与依赖法》的融合
原标题:Azure Devops & Code dependency track integration

努力整合 依赖性轨道有斜度假,目前我们正在使用比目光跟踪依赖情况。

我已安装了https://marketplace.udio.com/items?itemName=GSoft.dependency-tier-vsts。 这一延长已在我的项目中进行。

不能确定在什么地方可以发现延长时间,也不能确定如何利用这一延长和完成我与Devops的融合。

Regards, Shan

Azure devops项目延期,并试图找到BOM和YML档案,以利用这一延期。

附属轨道——https://docs.dependencytier.org/usage/cicd/

问题回答

Not sure where i can find the extension in azure devops and not sure how to use this extension and complete my integration with Azure Devops.

它增加了“<条码>。 将BOM文件上载到附属轨道的任务交给DevOps。 在建立管道时,你可以找到任务。

“entergraph

关于这些投入,请参见:Paraifs descripted in the extension overview page or

关于这些用途,请参阅延伸总页或管道样本;https://github.com/gsoft-inc/azure-line-dependency- Line/blob/master/README.md” rel=“nofollow noreferer”?

Basic Usage Example:

trigger:
- master

pool:
  vmImage:  ubuntu-latest 

steps:
- task: NodeTool@0
  inputs:
    versionSpec:  18.x 
  displayName:  Install Node.js 

- script: |
    npm install
    npm install -g @cyclonedx/cyclonedx-npm
  displayName:  npm install 

- script: |
    cyclonedx-npm --version
    cyclonedx-npm --output-file  $(Agent.TempDirectory)/bom.xml 
  displayName:  Create BOM 

- task: upload-bom-dtrack-task@1
  displayName:  Upload BOM to https://dtrack.example.com/ 
  inputs:
    bomFilePath:  $(Agent.TempDirectory)/bom.xml 
    dtrackProjId:  00000000-0000-0000-0000-000000000000 
    dtrackAPIKey:  $(dtrackAPIKey) 
    dtrackURI:  https://dtrack.example.com/ 

在“依赖性”下,你可以参考以下线索:





相关问题
Windows Azure WorkerRole response

I am working on an Azure demo to run Powershell in a worker role. In my web role I add the name of the Powershell script which is to be run to a CloudQueue object. I can print the script output to ...

Windows Azure WebRole stuck in a deployment loop

I ve been struggling with this one for a couple of days now. My current Windows Azure WebRole is stuck in a loop where the status keeps changing between Initializing, Busy, Stopping and Stopped. It ...

Getting a token for Windows Azure

We are looking at Windows Azure, but getting a token appears to be hard now, at least that s what I m seeing in web searches. Anyone tried it or know how to accelerate that process? Any idea how long ...

Developing Azure .Net 4.0 Applications

Presently .Net 4.0 is not supported on Azure. This thread indicates that you will not be able to use .Net 4.0 with VS 2010 until it is supported in the cloud. http://social.msdn.microsoft.com I d ...

.NET 4.0 on Windows Azure?

My google-fu is failing me on this one. As a possible solution to Unit Testing .NET 3.5 projects using MStest in VS2010 (but I ve put this in a seperate question because it s kind of unrelated): Is ...

热门标签