在我的 Azure DevOps 组织中,我有 2 个项目: 项目 1:一些工具 项目 2:我的应用程序
项目 1 的构建结果发布到项目 1 中的 feed。在 VS2019 中,我可以在项目 2 的应用程序中使用该 feed 中的 nuget 包。当我尝试为项目 2 设置管道时,我无法从项目1.
我的管道看起来像:
steps:
- task: NuGetAuthenticate@0
- task: NuGetToolInstaller@1
- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: '**/*.sln'
feedsToUse: 'select'
vstsFeed: ***FEED_ID***
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
Run Code Online (Sandbox Code Playgroud)
nuget 恢复失败并出现以下错误:
##[error]The nuget command failed with exit code(1) and error(Unable to load the service index for source https://***organization***.pkgs.visualstudio.com/***FEED_ID***/_packaging/***PACKAGE_ID***/nuget/v3/index.json.
Response status code does not …Run Code Online (Sandbox Code Playgroud) 我正在寻找一种在 Windows 上使用 chrome 在 intellij 中调试角度应用程序的解决方案。
目前我无法将调试器附加到 chrome。我尝试启动 chreme--remote-debugging-port=9222和许多其他解决方案。
目前我正在使用 IntelliJ 2020.2 和 Chrome 86。
有人有 windows 的解决方案吗?