我有大约 100 个应用程序要重新发布,我是否使用 microsoft.build 来完成这项任务。好吧,其中大约 40 个不会重新发布,因为他们有Error 1 Unable to find manifest signing certificate in the certificate store.
我知道我可以逐一检查并从项目中删除该属性,但这需要很长时间……时间。
这是我在下面使用的代码,我想知道有没有办法通过代码关闭该属性?
Console.WriteLine("building: " + f.FullName);
Engine engine = new Engine();
engine.GlobalProperties.SetProperty("Configuration", "Release");
bool success = engine.BuildProjectFile(f.FullName);