User Alex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T05:04:12Zhttp://stackoverflow.com/feeds/user/26564http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838626/bazaar-cruisecontrol-net/1862448#18624480Answer by Alex for Bazaar + CruiseControl.NetAlex2009-12-07T19:49:08Z2009-12-07T19:49:08Z<p>I would write my own plugin if I were you. You will find the currently implemented source controls under project/core/sourcecontrol in the CC.NET repository. There are a few things you need. One is the main class, this will inherit from ProcessSourceControl and should be based on the current source control providers. This initial class will implement things like GetModifications, LabelSourceControl, and GetSource. You will then need a few helper classes whcih are the historyparser class, and the urlbuilder class. These are specific to each source control provider and take care of parsing out the returns from a getHistory command or whatever yours has. And putting all the necessary pieces into the modification objects. The url builder takes the info form the modification objects and creates urls which will bring up the specific checkin in your web browser if your source control supports this. It really should be pretty easy for you, it is one of the best parts of CC.NET, in that anything they dont provide you can write yourself easily. I don't know of any other continuous integrations that support Bazaar, so you may be best off staying with CC.NET due to its customization abilities.</p>
http://stackoverflow.com/questions/1823623/fork-process-with-cc-net/1861866#18618660Answer by Alex for Fork process with CC .NETAlex2009-12-07T18:15:27Z2009-12-07T18:15:27Z<p>The way I would do it is to use a PowerShell or Batch script. The script can launch your process and return back normally to CC.NET after spawning the executable. This is the only way I can see doing it, as CC.NET does need to know it returned and the script can return, even with the process you spawned still out there running.</p>
http://stackoverflow.com/questions/1337255/how-can-i-enforce-a-specific-version-of-the-net-framework3How can I enforce a specific version of the .net frameworkAlex2009-08-26T20:25:29Z2009-11-03T13:19:30Z
<p>We were under the impression that setting the target framework on the properties of a solution would limit that app to using only that framework or below's functionality. We just found out though, that someone can add a reference and start using code from a higher versioned framework and the compiler won't complain one bit. Since we would like to prevent this in the future does anyone have any ideas on how I could detect something referencing a higher version or not? I need to fail the build if someone adds code above our target.</p>
http://stackoverflow.com/questions/76622/rewrite-of-legacy-code/1650924#16509242Answer by Alex for Rewrite of legacy codeAlex2009-10-30T16:34:48Z2009-10-30T16:34:48Z<p>What about using one of the third party apps that take cobol and convert it to C# like:</p>
<p><a href="http://www.softwaremining.com/index.jsp" rel="nofollow">http://www.softwaremining.com/index.jsp</a></p>
<p>Or porting it to COBOL.net, that should be easier, then everything you add could be in one of the other .net languages.</p>
http://stackoverflow.com/questions/1641330/how-does-one-start-a-process-from-cruisecontrol-net-that-persists-after-cc-net/1641378#16413780Answer by Alex for How does one start a process from CruiseControl .NET that persists after CC .NET exits?Alex2009-10-29T02:58:12Z2009-10-29T02:58:12Z<p>As far as I know there is no way to get CC.NET to launch something without it getting a return value and not have an exception. So to get around this my first thought would be to use the executable task to call some form of script, which can then launch the exe and return back to CruiseControl.</p>
http://stackoverflow.com/questions/1626988/website-deployment-skills0WebSite Deployment SkillsAlex2009-10-26T19:57:02Z2009-10-27T11:29:24Z
<p>We need to increase our knowledge on deployment of ASP.NET Web sites/Web App. We are getting increasingly bigger and more traffic and need a more professional approach. Not too mention, we are also moving up to multiple database/multiple back end/ multiple front end server deployments and we just don't want to screw it up.</p>
<p>What type of skills should we be looking for and is there a typical title people with these skills use? </p>
<p>Thanks,</p>
<p>Actually, We have most of the talents the two answers mention, what we are looking for is I guess what Dave calls the web server guru. I simply want someone to handle the deployment aspect. The developers we have need to be working on their end of it not trying to figure out dpeloyment best practices. Also, we may end up with multiple projects and teams and I don't think each team having a seperate person rolling their own solutions would be as good as 1 dedicated resource for all the teams. </p>
http://stackoverflow.com/questions/1567204/ms-vs-2005-compiler-optimization-not-removing-unused-unexecuted-code/1568308#15683080Answer by Alex for MS VS-2005 Compiler optimization not removing unused/unexecuted code..Alex2009-10-14T19:00:04Z2009-10-14T19:00:04Z<p>On our projects we have a flag set under the project properties\Linker\Refrences. We set it to Eliminate Unreferenced Data (/OPT:REF), according to the description this is supposed to remove function calls or data that are never used. I am just going by the description, I have never tested this or worked with it. But I just happened to see it within the last hour and figured it might be something you could try.</p>
http://stackoverflow.com/questions/1538977/build-server-for-wpf-app-does-team-city-have-an-advantage-over-cruisecontrol-ne/1539222#15392222Answer by Alex for Build server for WPF app - does Team City have an advantage over CruiseControl.NET?Alex2009-10-08T17:13:31Z2009-10-08T17:13:31Z<p>Wait a minute, he mentions CruiseCOntrol in his title but the tag is for CruiSeControl.NET.
Nothing Kent mentions applies to CrusieControl.NET. I don't know how you want to test WPF, but TFS and MSTest work great on CruiseControl.NET so I'd be interested in where they ran into issues.</p>
<p>So long answer short. No it does not hold an advantage, they both have lots of pros and cons and it will ultimately end up being a personal decision with no right/wrong answer. I myself prefer CC.NET.</p>
http://stackoverflow.com/questions/1506414/integrate-cruise-control-net-with-tfs/1512064#15120641Answer by Alex for Integrate Cruise Control .NET with TFSAlex2009-10-02T22:17:24Z2009-10-02T22:17:24Z<p>In 1.5, which was just CTP'd this week the TFS functionality is in the base package and there is no need for the plugin. Everything up until 1.5 Bryan has explained.</p>
http://stackoverflow.com/questions/1492203/how-do-you-use-commercial-libraries-in-a-continuous-integration-build/1504165#15041651Answer by Alex for How do you use commercial libraries in a continuous integration build?Alex2009-10-01T14:04:24Z2009-10-01T14:04:24Z<p>We always keep our 3rd party libraries in our source control system, so they get pulled down to the build server with the rest of the code. But, they are not installed on the build server so that will keep your IT happy. I don't know specifically if this works with your controls, but it works with ours. It keeps maintaining library paths and alike a lot easier as the directory structure is the same for everyone.</p>
http://stackoverflow.com/questions/202079/wpf-versus-winforms/202114#2021145Answer by Alex for WPF versus WinformsAlex2008-10-14T17:41:09Z2009-09-24T20:44:57Z<p>The advantages of WPF is that it is much easier to create nice looking GUI's with custom controls and animations. WPF also helps further serparate the presentation and logic layers. If you have designers, it allows you to farm of 95% of this work to non-coders and allows the coders to work on logic. The disadvantages are the software costs for Expressions Blend, and the lack of any of the Visual Studio code profiling tools working well as they tend to get caught up in the frameworks calls in trying to render XAML. I am sure there are others but these were the only two we really saw.</p>
<p>The main consideration is if you wish to require your customers to have to install .NET 3.0 or even better .NET 3.5 SP1. You will get some niegative feedback</p>
http://stackoverflow.com/questions/1357631/could-not-find-project-configuration-build-error/1406172#14061721Answer by Alex for 'Could not find project configuration' build errorAlex2009-09-10T16:00:53Z2009-09-10T16:00:53Z<p>I think your error sounds like one I had a while ago. It turned out to be that we had forgotten to install the 64 bit options when we installed. One way to test was to rerun the installer and choose the change or remove and see if the 64 bit options are already installed or not.</p>
http://stackoverflow.com/questions/1344519/how-do-i-add-a-powershell-cmdlet-or-function-to-my-machine-so-that-it-is-always-a/1344546#13445461Answer by Alex for How do I add a PowerShell cmdlet or function to my machine so that it is always available?Alex2009-08-28T01:12:47Z2009-08-28T01:12:47Z<p>You should access the cmdlets through your profile script. That way everytime you access powershell it gets loaded. <a href="http://www.microsoft.com/technet/scriptcenter/topics/winpsh/manual/profile.mspx" rel="nofollow">See Here</a></p>
http://stackoverflow.com/questions/1327912/robust-way-to-send-and-handle-messages-for-a-distributed-system/1327989#13279890Answer by Alex for Robust way to send and handle messages for a distributed systemAlex2009-08-25T12:32:22Z2009-08-25T12:32:22Z<p>Have you taken a look at Mono-Olive? I know they were implementing WCF, this would probably be your best option if they have implemented enough to be useful by now.</p>
http://stackoverflow.com/questions/1223520/equivalent-of-a-windows-service-on-osx-with-mono/1323759#13237591Answer by Alex for Equivalent of a Windows Service on OSX with MonoAlex2009-08-24T17:45:14Z2009-08-24T17:45:14Z<p>You want to put a <a href="http://www.screencast.com/users/Zeus/folders/Jing/media/99de6a66-2acf-4eb6-8b75-091041857d19" rel="nofollow">plist</a> (this is an example of running CruiseControl.NET) in /Library/LaunchDaemons and the plist has to be owned by root. Also note as you are using LaunchD the process will always be running as root.</p>
http://stackoverflow.com/questions/1313847/filesystemwatcher-how-to-determine-when-file-is-closed/1313938#13139381Answer by Alex for FileSystemWatcher - how to determine when file is closed?Alex2009-08-21T19:56:00Z2009-08-21T19:56:00Z<p>What I did was put a 5 minute loop and just watch for the file to be available. That way I could give it time to free up, but yet still had a definitive time. If it hasn't cleared by 5 minutes in my system something is definetely wrong. You should set your time limit to your circumstances. I got this idea from somewhere, no idea where anymore.</p>
<pre><code> DateTime EndTime = System.DateTime.Now.AddMinutes((double)timeOut);
while (System.DateTime.Now <= EndTime)
{
try
{
using (Stream stream = System.IO.File.Open(filename, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite))
{
if (stream != null)
{
break;
}
}
}
catch (FileNotFoundException)
{
//
}
catch (IOException)
{
//
}
catch (UnauthorizedAccessException)
{
//
}
System.Threading.Thread.Sleep(sleepTime);
}
</code></pre>
http://stackoverflow.com/questions/1306858/is-there-no-tfs-snapin-for-powershell-on-x643Is there no TFS Snapin for PowerShell on x64?Alex2009-08-20T15:13:06Z2009-08-20T18:27:41Z
<p>I am trying to use the TFSSnapin in PowerShell from C# code using System.Management.Automation from the PowerShell SDK, however I would like to compile it using "AnyCPU". When I try debugging it in any CPU I get the "No Plugins Registered" error, I try debugging it in x86 mode and it works just fine. Is there anyway to get the Plugins registered on x64 PowerShell so I can use AnyCPU? Or am I just out of luck?</p>
http://stackoverflow.com/questions/1306542/manual-deployment-from-cruisecontrol/1306641#13066412Answer by Alex for Manual deployment from CruiseControlAlex2009-08-20T14:37:53Z2009-08-20T14:37:53Z<p>Yes, basically you want two projects the first being the continuous or compile project, that would probably be interval trigger. The second project you would use an empty trigger block on (this means force build only) and this one would only handle the deploy logic.</p>
http://stackoverflow.com/questions/1300144/deployment-after-ci-builds/1300758#13007581Answer by Alex for Deployment after CI buildsAlex2009-08-19T15:32:57Z2009-08-19T15:32:57Z<p>We use MSBuild exclusively, just a choice. I am sure Nant and the others do things just as well. We only publish to a dev environment (for dev testing) and a stage environment (Where QA actually tests). I would not suggest that you put the production system push on this as the temptation to force builds might be too great for some people.</p>
<p>We use some of the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">MSBuild Community Tasks</a></p>
http://stackoverflow.com/questions/1295890/windows-7-progress-bar-in-taskbar-in-c/1295905#12959052Answer by Alex for Windows 7 progress bar in taskbar in C#?Alex2009-08-18T19:16:40Z2009-08-18T19:16:40Z<p>Yes, you need to use this API.</p>
<p><a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">http://code.msdn.microsoft.com/WindowsAPICodePack</a></p>
http://stackoverflow.com/questions/1279143/should-i-switch-to-windows-7-for-primary-development/1279209#12792093Answer by Alex for Should I switch to Windows 7 for primary development?Alex2009-08-14T17:47:12Z2009-08-14T17:47:12Z<p>I have switched, and I would recommend it. Like everyone else points out I am sure there will be a few gotchas but I have been running 1st on the RC and now on The RTM and haven't hit one yet. With the increases in performance over vista, security over XP, and usability over any previous windows OS I would do it.</p>
http://stackoverflow.com/questions/1239925/automated-builds-of-branches-with-svn/1246644#12466440Answer by Alex for Automated builds of branches with SVNAlex2009-08-07T19:45:23Z2009-08-07T19:45:23Z<p>I don't think what you want as far as automatic set up of your continuous integration projects based on branching. However, if your branches are pretty standard and not changing to drastically it would be rather easy to write a powershell script (or whatever scripting languiage you prefer) to set up the new projects.</p>
<p>I question the need though, when we branch in CC.NET it takes less than a minute to copy the trunks projects and search and replace the needed fields. The only time we run into issues is when we have custom scripts used during the build, if those exist we need to modify those as well but that will happen with any continuous integration system.</p>
http://stackoverflow.com/questions/1207259/clean-full-rebuild-of-a-project-every-night-in-cruisecontrol-net/1213546#12135460Answer by Alex for Clean/Full Rebuild of a project every night in CruiseControl.NETAlex2009-07-31T16:27:49Z2009-07-31T16:27:49Z<p>Use the clean copy on the source control block, everything is already done for you. All you have to do is set it to true. If you really just want a project to clean that directory, then don't have any build tasks. However, as a matter of good release engineering you really should use cleancopy with all your individual builds. Otherwise, you cnanot be sure the build would work on an absolutely clean machine.</p>
http://stackoverflow.com/questions/1209972/getting-mstest-output-to-show-in-cruisecontrol-net/1213099#12130991Answer by Alex for Getting MSTest output to show in CruiseControl.NetAlex2009-07-31T15:11:27Z2009-07-31T15:11:27Z<p>Did you configure your web dashboard with the correct xsl to format the outputs? There are two different versions of the XSL's (Summary and Report) for VSTS 2005 and 2008 as Microsoft changed the XML output drastically between the two versions. The changes were very good, just breaking changes.</p>
http://stackoverflow.com/questions/1173947/xml-query-against-sql-server-ssis-dataprofiler-xml-file-in-powershell-does-not-wo/1175255#11752550Answer by Alex for XML query against SQL Server SSIS DataProfiler xml file in Powershell does not work. Help?Alex2009-07-24T00:37:02Z2009-07-24T00:37:02Z<pre><code>$file = [xml](gc "C:\t.xml")
$columns = $file.DataProfile.ColumnNullRatioProfile.Column.name
</code></pre>
http://stackoverflow.com/questions/1166693/front-end-software-developer/1167169#11671690Answer by Alex for Front-End Software DeveloperAlex2009-07-22T18:15:53Z2009-07-22T18:15:53Z<p>I don't think either of the certificates will help you, because nobody knows about them or what they entail. I don't think the graphics stuff helps you as that is more UX's responsibility at most companies...I would go with building the portfolio and just start sending out resumes. If you knw your stuff you should be able to get more appropriate job, then you can ask that employer what would help them more.</p>
http://stackoverflow.com/questions/1166984/what-are-the-benefits-of-a-powershell-script-over-a-console-application/1167126#11671264Answer by Alex for What are the benefits of a Powershell script over a Console Application?Alex2009-07-22T18:07:26Z2009-07-22T18:07:26Z<p>The biggest benefit to me is losing the compile process and rolling out of binaries. I'll give you an example. I had an application that used some assemplies out of the Visual Studio private assemblies folder, the app instrumneted binaries and ran Unit Tests during our compiel process. When VS 2008 came out, I had to change resources, re-compile, and then was going to have to roll out binaries to all of our build servers. I decided this was stupid, and switched to PowerShell so now my script figures out which version of vsts is installed and loads in the highest versioned dll's. Now you could do this in an app using reflection and late binding and stuff but it is much easier in PowerSHell, that and each Release ENgineer can just modify the script quickly in a text editor when we add binaries or remove binaries that we need to instrument. For smallish inhouse apps I always PowerSHell now...</p>
http://stackoverflow.com/questions/1156911/cruisecontrol-net-build-fails-when-svn-is-not-available/1156955#11569553Answer by Alex for CruiseControl.NET build fails when SVN is not availableAlex2009-07-21T02:02:39Z2009-07-21T02:22:21Z<p>Correction. All of what you want is in the new settings</p>
<p><a href="http://confluence.public.thoughtworks.org/display/CCNET/Project+Configuration+Block" rel="nofollow">CruiseControl.NET docs</a></p>
<p>You can set it to not report a failure until max retries is set. So make max at 3 and set it to only move onto the publisher (ie fail the build) unit it hits the limit. So 1 or 2 misses will be ok, but then 3 fail the build something is wrong.</p>
http://stackoverflow.com/questions/1111664/is-there-a-way-to-specify-one-artifactsdirectory-for-the-whole-site-in-cruisecont/1113667#11136671Answer by Alex for Is there a way to specify one artifactsDirectory for the whole site in CruiseControl.Net?Alex2009-07-11T12:59:02Z2009-07-14T16:49:14Z<p>OK, now I see. I don't think currently there is a way to do that, but would be a good feature. You should go to the google group ccnet-devel and post a message there as a feature request. I too, could use this. Good Idea.</p>
http://stackoverflow.com/questions/1032814/getting-insufficient-memory-exception-in-a-exe-started-with-cruisecontrol-net/1033997#10339971Answer by Alex for Getting insufficient memory exception in a exe started with Cruisecontrol.NetAlex2009-06-23T17:30:27Z2009-06-23T17:30:27Z<p>Are you using the service? Because the service should not be trying to bring up any GUIs (you mentioned winforms) If you try to bring one up, it will not work, maybe that is the true reason for the exception?</p>
http://stackoverflow.com/questions/1337255/how-can-i-enforce-a-specific-version-of-the-net-framework/1662615#1662615Comment by Alex on How can I enforce a specific version of the .net frameworkAlex2009-11-03T13:04:50Z2009-11-03T13:04:50ZAnd how would you detect these? I have looked at the manifests, the proj files, and alike. And, without a global list of each dll and which version it is in I cannot figure out how to best determine. Good news is I have tested VS 2010 and it does enforce this, so the best option just may be to wait for 2010 and upgrade immediately.http://stackoverflow.com/questions/1626988/website-deployment-skills/1627056#1627056Comment by Alex on WebSite Deployment SkillsAlex2009-10-27T11:31:56Z2009-10-27T11:31:56ZI added some more info in the questionhttp://stackoverflow.com/questions/1626988/website-deployment-skills/1627051#1627051Comment by Alex on WebSite Deployment SkillsAlex2009-10-27T11:31:21Z2009-10-27T11:31:21ZI edited the question with some more specifics. I think I am more looking for your webserver guru. Where do I find that person and what title do I use? And what type of skills should they have?http://stackoverflow.com/questions/1570494/cannot-add-new-workitems-using-tfs-api/1577961#1577961Comment by Alex on Cannot add new Workitems using TFS APIAlex2009-10-16T13:30:45Z2009-10-16T13:30:45ZThis is a good idea anyways, you should always iterate and check for the field to exist. Because at least here, we have many different teams with customized templates. And you never know, from project to project what fields exist or not. Saves a lot of exception throwing.http://stackoverflow.com/questions/1538977/build-server-for-wpf-app-does-team-city-have-an-advantage-over-cruisecontrol-ne/1539477#1539477Comment by Alex on Build server for WPF app - does Team City have an advantage over CruiseControl.NET?Alex2009-10-09T00:45:44Z2009-10-09T00:45:44ZIf the subject was UI Automation then CC.NET will be tricky because of the fact it runs as a service. Windows services and Daemons if running it on a mac or linux box, are not designed to handle that well. But with a little finagling you can usually get it. If Team City runs as a service/daemon it will have the same issueshttp://stackoverflow.com/questions/1492203/how-do-you-use-commercial-libraries-in-a-continuous-integration-build/1504165#1504165Comment by Alex on How do you use commercial libraries in a continuous integration build?Alex2009-10-05T11:30:08Z2009-10-05T11:30:08ZYour only other choice would be to contact infragistics and explain the situation and maybe they would have the answer.http://stackoverflow.com/questions/1492203/how-do-you-use-commercial-libraries-in-a-continuous-integration-build/1504165#1504165Comment by Alex on How do you use commercial libraries in a continuous integration build?Alex2009-10-05T11:28:30Z2009-10-05T11:28:30ZUnfortunately then, it seems you are stuck with getting your build server admin to install them on the build server. I understand the logic and reasoning of why they wouldn't want it installed. But, when you made the choice to use these, I think you made it necessary to install them on the server.http://stackoverflow.com/questions/1337255/how-can-i-enforce-a-specific-version-of-the-net-framework/1337323#1337323Comment by Alex on How can I enforce a specific version of the .net frameworkAlex2009-08-26T20:43:13Z2009-08-26T20:43:13ZWe wish to make sure a developer doesn't accidently/unknowingly add use any of the new features. http://stackoverflow.com/questions/1108359/how-to-choose-net-version-to-compile-project/1108380#1108380Comment by Alex on How to choose .NET version to compile project?Alex2009-08-26T19:41:53Z2009-08-26T19:41:53ZActually Just so everyone is aware, this does not restrict you at all it seems. We just figured that out when our app which has a target of 2.0 got Linq and some other 3.5 specific things added, and the compiler didn't squak at all.http://stackoverflow.com/questions/1306858/is-there-no-tfs-snapin-for-powershell-on-x64/1307612#1307612Comment by Alex on Is there no TFS Snapin for PowerShell on x64?Alex2009-08-20T18:42:01Z2009-08-20T18:42:01Zthanks though, I appreciate the help.http://stackoverflow.com/questions/1306858/is-there-no-tfs-snapin-for-powershell-on-x64/1307612#1307612Comment by Alex on Is there no TFS Snapin for PowerShell on x64?Alex2009-08-20T18:14:18Z2009-08-20T18:14:18ZI cannot use the 64 bit InstallUtil as it just says the dll is the incorrect format. It appears they only have 32 bit dll's so maybe I just cannot do it. http://stackoverflow.com/questions/1306542/manual-deployment-from-cruisecontrol/1306641#1306641Comment by Alex on Manual deployment from CruiseControlAlex2009-08-20T17:10:42Z2009-08-20T17:10:42ZExactly, I do use MSBuild to deploy. I just meant a seperate project to give users the ability to force the deployment. THat project only calls MSBuild.http://stackoverflow.com/questions/1300144/deployment-after-ci-builds/1300758#1300758Comment by Alex on Deployment after CI buildsAlex2009-08-19T19:52:20Z2009-08-19T19:52:20ZI am not sure there is a right answer for if a CI box should be on the same network. I think there are a lot of factors that play into this.http://stackoverflow.com/questions/1300144/deployment-after-ci-builds/1300758#1300758Comment by Alex on Deployment after CI buildsAlex2009-08-19T19:51:33Z2009-08-19T19:51:33ZOurs is on the same network, and the community tasks I linked to had IIS remapping task in it, but we do not use remapping currently.http://stackoverflow.com/questions/1240358/installing-net-windows-service/1240374#1240374Comment by Alex on Installing .NET Windows ServiceAlex2009-08-06T18:12:04Z2009-08-06T18:12:04ZReed is right, if you try to install aservice in a command prompt not run as service, you will get a message saying it failed