build-process

Copying build process template or reuse exsisting [closed]

▼魔方 西西 提交于 2019-12-25 08:29:41
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . I am wondering what the tradeoffs are when setting en new TFS build process template. Basically you have 2 options - Copy existing xaml. Essentially creating a copy of the template for the current team project. - Use existing xaml. Essentially sharing the same build process

TFS Workflow - Show Test Suites in Custom Editor

十年热恋 提交于 2019-12-25 02:55:58
问题 [Edit] You can get the current build-def via the IServiceProvider . See this answer. [/Edit] I'm trying to add a custom editor for one of our TFS Xaml build workflows. I started by following this excelent tutorial by Ewald Hofman. Everything worked as expected, when I click on the [...] button for the workflow parameter the credential dialog is displayed. What I want to do: I want to display a selectable list/tree of test suites that are available in the TFS team project. Just like in the

Bundle Addons with Firefox Mobile (Fennec)

十年热恋 提交于 2019-12-25 01:49:50
问题 How to Bundle Addons with Firefox Mobile (Fennec) for Android ? I would like to include several add-ons on the build process in a away that users could start using them immediately. I've searched Mozilla Wiki and couldn't find any relevant information about this. tks. 回答1: I've found the answer: To create a distribution build locally, put your distribution folder at objdir/dist/bin/distribution, then package the app as you normally would. The distribution files will be copied out to /data

Can I build 2 or more dlls from C# project in Visual Studio 2008?

僤鯓⒐⒋嵵緔 提交于 2019-12-24 19:18:05
问题 Because I'm working on Creating RIA Framework with Silverlight & C#. So I need to use rich features of Silverlight such as dynamic loading. But I found that Visual Studio will merge all class library(same namespace or difference namespace) into one dll. Do you have any idea to build 2 or more dlls from C# project? I just create 1 project for 1 child page. So If I have 100 child pages in my solution, I will create 100+ projects for this solution that doesn't make sense. Thanks 回答1: Just make

VBC + NAnt. Error compiling WinForm

∥☆過路亽.° 提交于 2019-12-24 18:54:20
问题 It should first be noted that I am trying to avoid rewriting all my scripts to use msbuild. I have noticed that there are several problems when using NAnt with the VBC task and compiling a WinForms application. The main problem seems to be that VBC can't find Sub Main. This is odd, since from within VS, there is no indication that there is any sort of difference between my call to vbc and msbuild's call to vbc. Does anyone have any insight into a solution to this problem or a way to force the

Is it possible to debug the WF used to build in VS2012?

橙三吉。 提交于 2019-12-24 13:38:57
问题 Guess the title asks the Q really. I want to see what's going on on a step-by-step basis for the build process that I've inherited. I've only just started to play with WF and whilst I understand it is possible to debug a workflow I've really no idea how to go about it in this instance. 回答1: You can debug everything, starting from custom WorkflowServiceHost (if you have one), particular code-based activities, xaml based activities, up to activity designer surface. I believe the biggest

Hudson dependencies

十年热恋 提交于 2019-12-24 05:40:10
问题 I have set up my hudson job A. Job A depends on job B and C. I have set them up with "Build other projects". This works well, although each job is in separate directory in my workspace (default structure). But I need job B and C in jobs A workspace (root folder). I have considered two approaches: Change the workspace for job A and push that variable to job via "Trigger parameterized build on other projects" and then use ant build script to copy them to that location, since I couldnt find an

How to build latest Qt from Git repository on windows?

北城以北 提交于 2019-12-24 02:51:46
问题 I have tried to build a latest Qt from the Git repository on Windows with the following commands: mkdir c:\qt\latest cd c:\qt\latest git clone git://gitorious.org/qt/qt.git cd qt set PATH=%PATH%;c:\qt\latest\qt\bin configure.exe Unfortunately configuration stops very early with error the following error: Microsoft (R) Program Maintenance Utility Version 9.00.30729.01 Copyright (C) Microsoft Corporation. All rights reserved. cl -c -Foproject.obj -W3 -nologo -O2 -I. -Igenerators -Igenerators

How to build latest Qt from Git repository on windows?

落花浮王杯 提交于 2019-12-24 02:51:10
问题 I have tried to build a latest Qt from the Git repository on Windows with the following commands: mkdir c:\qt\latest cd c:\qt\latest git clone git://gitorious.org/qt/qt.git cd qt set PATH=%PATH%;c:\qt\latest\qt\bin configure.exe Unfortunately configuration stops very early with error the following error: Microsoft (R) Program Maintenance Utility Version 9.00.30729.01 Copyright (C) Microsoft Corporation. All rights reserved. cl -c -Foproject.obj -W3 -nologo -O2 -I. -Igenerators -Igenerators

Global error message using Gulp Notify & Plumber

时光总嘲笑我的痴心妄想 提交于 2019-12-24 02:25:24
问题 Is it possible to create a global OnError function that I can pass a title and the error message to? I'm looking to do something like this for all tasks ran with plumber: onError = function(error) { $.notify.onError({ title: 'Error', subtitle: '<%= file.relative %> did not compile!', message: '<%= error.message %>' })(error); }; 回答1: You can simply save the onError function as a variable: var onError = notify.onError({ title: 'Error', subtitle: '<%= file.relative %> did not compile!', message