gpt4 book ai didi

App Center 上的 Nuget Restore 问题

转载 作者:行者123 更新时间:2023-12-02 01:02:51 24 4
gpt4 key购买 nike

当我尝试在 Microsoft App Center 上构建应用程序时遇到此错误。

Errors in packages.config projects https://{myDomainOnVSTS}.com/_packaging/CustomNugetPackages/nuget/v3/index.json: Unable to load the service index for source https://{myDomainOnVSTS}.pkgs.visualstudio.com/_packaging/CustomNugetPackages/nuget/v3/index.json. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. https://api.nuget.org/v3/index.json: Package 'CalendarWithNoDeselect.1.0.0' is not found on source

奇怪的是,该应用程序可以在 VSTS 和我的本地计算机上使用私有(private)提要构建得很好。

这是 Nuget.Config 文件

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="CustomNugetPackages" value="https://{myDomainOnVSTS}.pkgs.visualstudio.com/_packaging/CustomNugetPackages/nuget/v3/index.json" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSourceCredentials>
<CustomNugetPackages>
<add key="Username" value="$USER_VARIABLE" />
<add key="Password" value="$PASSWORD_VARIABLE" />
</CustomNugetPackages>
</packageSourceCredentials>
</configuration>

有人可以帮我解决这个问题吗。

编辑1:问题出在环境变量上,因为当我不使用它们时,包会按如下方式恢复。

最佳答案

嘿,你的环境变量问题似乎是因为你在 Nuget.Config 文件中配置它们的方式存在语法错误。尝试将它们编辑为:

<add key="Username" value="%USER_VARIABLE%" />
<add key="Password" value="%PASSWORD_VARIABLE%" />

仅供引用 - https://learn.microsoft.com/en-us/appcenter/build/custom/variables/

关于App Center 上的 Nuget Restore 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49357193/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com