小编mtu*_*tty的帖子

构建过程中的ActivationManager异常?

在VS 2010中构建网站项目时,我遇到以下异常:

The pre-application start initialization method Run on type WebActivator.ActivationManager  threw an exception with the following error message: Exception has been thrown by the target of an invocation..     
Run Code Online (Sandbox Code Playgroud)

我该如何调试呢?当我使用VS.NET和命令行(例如,通过NAnt/MSBuild)构建时,就会发生这种情况.

asp.net

21
推荐指数
3
解决办法
8011
查看次数

Git - Bare repo不能拥有主分支的工作树 - 为什么?

我正在研究一些服务器端软件来进行合并.通过使用git worktree它可以检查给定分支的裸仓库并将另一个分支合并到其中.即使有大型存储库,它也非常快.

唯一的例外似乎是合并master.当我这样做时,git worktree add /tmp/path/to/worktree master我收到一个错误:

致命:'master'已在'/ path/to/bare/repo'检出

但这显然不正确,git worktree list给出:

/ path/to/bare/repo(bare)

...当然,在那条路上没有工作树,只有你期望的裸仓库文件.

更新:我与git维护者联系,他们同意这可能是一个错误.我有一个初步补丁来测试.此外,我还能够在没有补丁的情况下重现所需的行为.

在这一点上,我不完全确定边界条件或根本原因是什么,并且可能会有来自git的修复.

git version-control merge git-bare git-worktree

14
推荐指数
1
解决办法
1210
查看次数

Jenkins + Git Publisher - 如何回到{GIT_BRANCH}?

我在Jenkins 1.500上使用当前版本的Git插件(SCM提供程序和发布者).SCM轮询工作正常,使用我的git HTTP URL和"branches to build"设置"feature-*".这将获取对任何分支的更改,例如"feature-1234",运行构建/测试/覆盖任务,并报告成功或失败.所有这一切都运行正常,包括集成分支的合并,代码应该在成功构建和代码审查后结束.

问题是在同一个"feature-1234"分支上尝试将已完成的构建分支BACK推送到原点.在这种情况下,构建变量"GIT_BRANCH"包含"origin/feature-1234",在其他成功构建之后,它会在Git Publisher中产生以下错误和失败:

Pushing HEAD to branch origin/feature-1234 at repo origin
ERROR: Failed to push branch origin/feature-1234 to origin
hudson.plugins.git.GitException: Command "/usr/bin/git push https://jenkins:jenkinsPWD@myproject.com/git/project HEAD:origin/feature-1234" returned status code 1:
stdout: 
stderr: error: unable to push to unqualified destination: origin/feature-1234
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
error: failed to push some refs to 'https://jenkins:jenkinsPWD@myproject.com/git/project' …
Run Code Online (Sandbox Code Playgroud)

git jenkins

9
推荐指数
1
解决办法
1万
查看次数

Bootstrap 3 - 可折叠的右侧面板,如Google Drive Details/Activity面板

为我们现有的产品开发新的Web布局.我们希望集成的团队聊天和活动供稿显示始终显示在每个页面的右侧.我们正在使用Bootstrap 3,我有一个看起来很不错的模拟器.我正在使用vanilla Bootstrap 12列大小调整样式来执行此操作:

当前模拟显示右侧面板

现在我们希望允许用户折叠右侧面板(水平),特别是对于水平不动产很重要的视图(网格视图等).

有没有Bootstrap方法来做到这一点?我可以使用垂直分割器小部件,或顶部导航中的切换按钮,或任何其他有意义的演示.这更像是我需要建议的网格大小.

html css jquery twitter-bootstrap-3

9
推荐指数
2
解决办法
3万
查看次数

卸载VS.NET 2010 Beta打破.NET?

我和VS.NET 2005一直在运行VS.NET 2010测试版几个月.直到昨天下午,我才使用2005进行工作.

昨晚我卸载了VS.NET 2010,并且我的.NET相关应用程序的工作状态(VS.NET 2005,SQL Server Management Studio等).这些产品的安装也不起作用,2.0 SDK或2.0 Framework也不会安装.

他们都失败了这个错误:

(Msgbox title) ngen.exe - Unable to Locate Component
This application has failed to start because MSVCR100.dll was not found.  Re-installing the application may fix the problem.
Run Code Online (Sandbox Code Playgroud)

当然,这不是,因为这是安装.

有任何想法吗?谷歌似乎什么都没有.

.net visual-studio-2010

6
推荐指数
1
解决办法
2879
查看次数