我最近使用Update 2将我的TFS 2015更新到TFS 2015.一切顺利但我无法再将队列排队.
我登录服务器并意识到我无法在任何地方找到我的构建控制器(仍使用XAML构建定义).
我唯一看到的是: 
在我的VS中我看到了这个: 
构建控制器/代理是否完全从具有更新2的TFS消失了?我是否遗漏了发行说明中的内容?
有什么方法可以修复我的情况?
他们是否有一种使用packages.config从提要中自动获取最新nuget包的方法?例如:
在我的包配置中我有:
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Autofac" version="4.2.0" targetFramework="net452" />
<package id="MyOwn.ApiProxy" version="17.2.1.3" targetFramework="net452" />
<package id="Iesi.Collections" version="4.0.1.4000" targetFramework="net452" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
</packages>
Run Code Online (Sandbox Code Playgroud)
在此 packages.config 中,MyOwn.ApiProxy 的版本被指定为 version 17.2.1.3,但 version17.2.1.4已在(私有)nuget feed 中。如何自动更新 packages.config 以获取最新版本的软件包?我应该创建预构建任务,还是可以latest在版本中指定?
使用 Visual Studio 2015 + NuGet 服务器 2.11.2.0。
谢谢
最近我不断从Build服务器收到此错误.如果我们关闭TestImpact,则不会出现此错误.我们希望看到我们的测试有什么影响,所以我正在寻找另一种解决方案.有谁知道这意味着什么?我找不到任何关于它的东西!
异常消息:http请求操作在00:15:00后超时.(类型TimeoutException)异常堆栈跟踪:Microsoft.TeamFoundation.Client.ChanHttpRetryChannel.Request(TfsMessage消息,TimeSpan超时)在Microsoft.TeamFoundation.Client.Channels.TfsHttpClientBase.Invoke(TfsClientOperation操作,Object []参数,TimeSpan超时,对象[]和输出)在Microsoft.TeamFoundation.TestImpact.BuildIntegration.BuildActivities.GetImpactedTests上的Microsoft.TeamFoundation.TestImpact.Client.TestImpactServer.Microsoft.TeamFoundation.TestImpact.Client.ITestImpactServer.PublishBuildChanges(Uri buildUri,CodeChange [] changes). System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor,BookmarkManager bookmarkManager,Location resultLocation)的System.Activities.CodeActivity.InternalExecute(ActivityInstance实例,ActivityExecutor executor,BookmarkManager bookmarkManager)中的.Execute(CodeActivityContext context).
我正在运行一个 TeamCity 代理,它生成一个 docker 容器,在该 (php) 容器内运行多个任务。比如phpunit、phplint和composer。如果所有测试都通过,我会压缩容器内的内容,它将创建一个 phpproject.zip。
完成后,我想将该 phpproject.zip 作为工件从 docker 容器内部推送回 TeamCity 服务器。
我的 docker 容器正在使用 --rm 参数运行以在脚本完成后删除容器。
这可能吗?
蒂姆
我正在使用 webpack 的 url-loader 插件并将其配置如下:
module.exports = {
entry: './src/admin.planningview.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: 'http://poc.local/dist/'
},
module: {
rules: [
{
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
loader: 'url-loader?limit=100000'
}
]
}
};
Run Code Online (Sandbox Code Playgroud)
在我的 base.css 中有以下行:
@font-face {
font-family: 'open_sansregular';
src: url('fonts/opensans-regular-webfont.eot');
src: url('fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/opensans-regular-webfont.woff') format('woff'), url('fonts/opensans-regular-webfont.ttf') format('truetype'), url('fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
font-weight: normal;
font-style: normal;
}
Run Code Online (Sandbox Code Playgroud)
该文件位于子文件夹“字体”中。
现在,我正在尝试根据块和资产的动态 publicPath 变量(因此覆盖http://poc.local/dist/ url)加载所有这些文件。
我添加了这是我的入口点文件:
__webpack_public_path__ = window.cdnURL;
Run Code Online (Sandbox Code Playgroud)
window.cdnURL 包含如下内容:http://cdn.local/dist/
现在我的问题是块被正确加载,但字体/woff 文件不是..我认为这似乎与 url-loader 有关。
当我在调试模式下检查 bundle.js 时,我看到以下内容,它是旧 URL: …