- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过 Azure DevOps 上的 Nuke 和 CI/CD 自动执行 NuGet 包更新。一切都构建得很好,但在 PushNuGet 步骤中,该过程尝试通过弹出窗口向 Azure 进行身份验证,这显然从未在 [in devops] 中呈现或应答
class Build : NukeBuild
{
/// Support plugins are available for:
/// - JetBrains ReSharper https://nuke.build/resharper
/// - JetBrains Rider https://nuke.build/rider
/// - Microsoft VisualStudio https://nuke.build/visualstudio
/// - Microsoft VSCode https://nuke.build/vscode
public static int Main () => Execute<Build>(x => x.PushNuGet);
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;
[Solution] readonly Solution Solution;
[GitRepository] readonly GitRepository GitRepository;
AbsolutePath SourceDirectory => RootDirectory / "src";
AbsolutePath TestsDirectory => RootDirectory / "tests";
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
string VersionNumber = "1.0.2";
Target Clean => _ => _
.Executes(() =>
{
SourceDirectory.GlobDirectories("**/bin", "**/obj").ForEach(DeleteDirectory);
TestsDirectory.GlobDirectories("**/bin", "**/obj").ForEach(DeleteDirectory);
EnsureCleanDirectory(ArtifactsDirectory);
});
Target Restore => _ => _
.DependsOn(Clean)
.Executes(() =>
{
DotNetRestore(s => s
.SetProjectFile(Solution));
});
Target Compile => _ => _
.DependsOn(Restore)
.Executes(() =>
{
DotNetBuild(s => s
.SetProjectFile(Solution)
.SetConfiguration(Configuration)
.EnableNoRestore());
});
Target Pack => _ => _
.DependsOn(Compile)
.Executes(() =>
{
DotNetPack(s => s
.SetProject(RootDirectory + "\\Fuze.Models\\Fuze.Models.csproj")
.SetNoBuild(true)
.SetConfiguration(Configuration)
.SetVersion(VersionNumber)
);
});
Target AddSource => _ => _
.DependsOn(Pack)
.Executes(() =>
{
var sourceUrl = "https://pkgs.dev.azure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json";
var sourceName = "DataFuzionHCM";
var sources = NuGetTasks.NuGetSourcesList();
if(sources.Any(source => source.Text.Contains(sourceName)))
{
NuGetTasks.NuGetSourcesRemove(s => s.SetName(sourceName));
}
NuGetTasks.NuGetSourcesAdd(s => s
.SetName(sourceName)
.SetSource(sourceUrl)
.SetUserName("NuGet Feed Token")
.SetPassword("fakepassword")
);
});
Target PushNuGet => _ => _
.DependsOn(AddSource)
.Executes(() =>
{
NuGetTasks.NuGetPush(s => s
.SetSource("DataFuzionHCM")
.SetApiKey("az")
.SetTargetPath(RootDirectory + $"/FUZE.Models/bin/debug/Fuze.Models.{VersionNumber}.nupkg")
);
});
}
在 Azure 构建管道上,在最后一步中,可以在作业日志中看到它卡在某个使用 azure 的身份验证窗口上。
Using credentials from config. UserName: NuGet Feed Token
[CredentialProvider]Using the ADAL UI flow for uri https://pkgs.dev.[hidden]ure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json. User sign-in required in a pop-up authentication window.
[CredentialProvider]Using the ADAL UI flow for uri https://pkgs.dev.[hidden]ure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json. User sign-in required in a pop-up authentication window.
[CredentialProvider]Using the ADAL UI flow for uri https://pkgs.dev.[hidden]ure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json. User sign-in required in a pop-up authentication window.
##[error]Unable to load the service index for source https://pkgs.dev.[hidden]ure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json.
##[error] The HTTP request to 'GET https://pkgs.dev.[hidden]ure.com/DataFuzionHCM/_packaging/DataFuzionHCM/nuget/v3/index.json' has timed out after 100000ms.
##[error]Process 'NuGet.exe' exited with code 1.
是否有一种方法可以通过 Azure 进行编程身份验证,这样它就不会在弹出身份验证时挂起和超时?
最佳答案
事实证明,NuGet feed 的密码已过期,因此当身份验证失败时,它会提示进行身份验证,而不是抛出身份验证错误。我进入 DevOps 并更新了密码的到期日期,从那里开始,一切正常。
我确实觉得奇怪的是,它没有抛出身份验证错误,而是在单独的窗口上要求本地用户输入密码。也许在设计用于更新 NuGet 包的 API 时并未考虑自动化。
关于c# - 通过 Nuke.Common/NuGet.CommandLine 部署 NuGet 包时如何通过 Azure Auth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64268831/
Swift 标准库将 CommandLine 声明为枚举。 /// Command-line arguments for the current process. public enum Comman
我正在尝试将预构建 shell 脚本添加到我的 gradle/Android-Studio 构建中。我已将以下内容添加到 app/build.gradle: task prePreBuild << {
我正在尝试使用 System.CommandLine,但无法让我的处理程序查看我传入的任何值。我尝试了最简单的命令行程序只是为了查看是否有任何值成功了,但到目前为止我还没有成功。我的目标是 .NET
在 gradle 中,有什么理由不使用 Groovy 的 .execute() 函数来运行命令行进程?我知道“gradle”方式是来自 Exec 的命令行。但感觉 .execute() 提供了更多的灵
使用根命令: new RootCommand { new Option("--myoption") }; 你怎么区分 ./myapp 和 ./myapp --myoption "" ? 我最初
我确信这会很简单,但找不到任何文档或解决方案。 我正在尝试使用 gcloud 编写脚本以在我的 GCP 实例中执行一些操作。 无论如何只能通过命令行使用 gcloud 登录/验证吗? 谢谢 最佳答案
在 $HOME/.gradle/init.gradle我有: gradle.buildFinished { buildResult -> commandLine 'bash', "blah b
我正在使用来自 nuget 的命令行库 v 1.9.71.2。不幸的是,文档不是最新的,而且我不了解用于此库的高级 C# 语言结构,因此我无法仅通过查看库中可用的接口(interface)来提出可行的
对于单元测试,我想模仿不同的命令行参数。如何在运行时将 commandLine args 修改为我的程序(环顾四周但找不到技巧)?基本上,我试图找到一种方法来修改 READONLY 属性 Enviro
我有一个 C++ 应用程序,它使用 CCommandLineInfo 来解析命令行参数。 其中一个参数是我们在应用程序启动后使用 CryptProtectMemory 在内存中加密的密码。 那时我想摆
我已经使用 CommandLine 库来解析它通过字符串类型、int 类型、bool 类型但它不能通过字节类型,我有一个异常 “Bad default value.” [Option("m",
我有一个项目正在向 Chrome 浏览器添加一些特定的标志(命令行),问题是我通过创建一个新的 Chrome 快捷方式来执行此操作,其中包含我想要执行的标志。 在过去的几天里,这个解决方案变得过于肤浅
我正在尝试使用 System.CommandLine 并且我已经安装了 nuget 包: Install-Package System.CommandLine -Version 2.0.0-beta1
我想在 gradle 任务中从命令行执行一些命令(例如打印目录中的所有文件): task dir(type: Exec) { def adbCommand = ["dir", "*.*"] c
使用 Command Line Parser Library , 有没有办法标记一组 say 3 选项并准确地制作所需的三个选项之一? 所以有这些选择: [Option("list-plugins",
$ mongo MongoDB shell version: 2.0.0 connecting to: test > use admin switched to db admin > db.auth(
我想使用 org.apache.commons.exec Java 库来调用可执行文件。 CommandLine对象防止命令行注入(inject)?例如,如果我调用: String singleStr
打印格式字符串如何作为参数传递? 例子.cpp: #include int main(int ac, char* av[]) { printf(av[1],"anything");
请在下面找到我的 dom xml 示例。我正在运行命令 virsh create 并收到此错误: Unable to open file 这个文件的权限都很好。 qemu:commandline下的
起初:我知道命令行中tsc和tsc -w的区别。这不是问题,而是一种特殊情况: 在 VS Code 的 tsconfig 中,我通过设置 "watch":true 启用了观察器。这是绝对想要的。但是现
我是一名优秀的程序员,十分优秀!