- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Windows,安装了 Docker(使用 lunix 容器),安装了 VS Code 和 devcontainer 扩展。我从私有(private) NugetFeed 加载了一个使用 Nugets 的项目,当我试图恢复(交互式)NugetPackages 时,我从我的 NugetFeed 收到 401 错误。
/usr/share/dotnet/sdk/2.2.207/NuGet.targets(119,5): error : Unable to load the service index for source https://pkgs.dev.azure.com/[SomeFeedUrl]/nuget/v3/index.json. [/workspaces/[SomeSolution].sln]
/usr/share/dotnet/sdk/2.2.207/NuGet.targets(119,5): error : Response status code does not indicate success: 401 (Unauthorized). [/workspaces/[SomeSolution].sln]
我在本地尝试了同样的事情(安装了凭证提供程序)并且一切正常。我还尝试将 Nugetpackages 路径安装到 devcontainer,在本地还原,然后启动项目(因为这是我的修复程序,可以让还原在我的 linux 机器上正常工作)。
这是我的 devcontainer.json 的样子:
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/azure-functions-dotnetcore-2.2
{
"name": "Azure Functions & C# (.NET Core 2.2)",
"dockerFile": "Dockerfile",
// Use 'settings' to set *default* container specific settings.json values on container create.
// You can edit these settings after create using File > Preferences > Settings > Remote.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"mounts": [
"source=C:/Users/[user]/.nuget,target=/home/vscode/.nuget,type=bind"
// "source=${env:HOME}${env:USERPROFILE}/.aspnet/https,target=/home/vscode/.aspnet/https,type=bind"
],
"remoteEnv": {
// [Optional] Override the default HTTP endpoints - need to listen to '*' for appPort to work
"ASPNETCORE_Kestrel__Endpoints__Http__Url": "http://*:5000"
// "ASPNETCORE_Kestrel__Endpoints__Https__Url": "https://*:5001",
// "ASPNETCORE_Kestrel__Certificates__Default__Password": "SecurePwdGoesHere",
// "ASPNETCORE_Kestrel__Certificates__Default__Path": "/home/vscode/.aspnet/https/aspnetapp.pfx",
},
// Uncomment the next line to run commands after the container is created.
// "postCreateCommand": "dotnet restore",
// Uncomment the next line to have VS Code connect as an existing non-root user in the container.
// On Linux, by default, the container user's UID/GID will be updated to match your local user. See
// https://aka.ms/vscode-remote/containers/non-root for details on adding a non-root user if none exist.
// "remoteUser": "vscode",
// Add the IDs of extensions you want installed when the container is created in the array below.
"extensions": [
"ms-azuretools.vscode-azurefunctions",
"ms-vscode.csharp"
]
}
我没有接触 dockerfile,dockerfile 仍然是一个 stock dockerfile。
有没有人遇到同样的问题/知道如何让它正常工作?
最佳答案
目前,没有干净的方法来做到这一点。我认为 #1 解决方案应该更容易设置。
打开 .devcontainer/devcontainer.json
并将条目添加到 mounts
部分(您可以将 src
值更改为其他值- 这是将存储您的 token 的卷的名称):
"src=credprovider-data,dst=${env:HOME}/.local/share/MicrosoftCredentialProvider,type=volume"
.devcontainer/Dockerfile
在最后添加:# Download and install Azure DevOps Credential provider
&& curl -sL https://raw.githubusercontent.com/microsoft/artifacts-credprovider/master/helpers/installcredprovider.sh | bash -
dotnet restore --interactive
dotnet restore
继续并下载您的提要。这个方法在重启后应该是持久的,甚至容器被重建。
您还可以将 PAT(个人访问 token )作为 VSS_NUGET_ACCESSTOKEN
环境、Feed URL,设置 VSS_NUGET_EXTERNAL_FEED_ENDPOINTS
和 NUGET_CREDENTIALPROVIDER_SESSIONTOKENCACHE_ENABLED
环境变量容器。
请同时检查这里: https://github.com/Microsoft/artifacts-credprovider#help
关于.net - 如何从 Windows 上的 devcontainer 中的私有(private) NugetFeed 恢复 Nuget 包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60005435/
我正在使用 Windows,安装了 Docker(使用 lunix 容器),安装了 VS Code 和 devcontainer 扩展。我从私有(private) NugetFeed 加载了一个使用
我是一名优秀的程序员,十分优秀!