User Pedro - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T06:37:30Zhttp://stackoverflow.com/feeds/user/13188http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/262116/cruisecontrol-sourcesafe-block/1730490#17304900Answer by Pedro for cruisecontrol sourcesafe blockPedro2009-11-13T16:51:59Z2009-11-13T16:51:59Z<p>Are the Debug and Release builds running at the same time? If so, I could see one waiting for the other to finish.</p>
http://stackoverflow.com/questions/1279317/cc-net-access-denied-error/1730432#17304320Answer by Pedro for CC.Net Access Denied ErrorPedro2009-11-13T16:44:02Z2009-11-13T16:44:02Z<p>Is it possible that the virtual folder it is trying to create already exists? Another thought - when you run from a command line, it is possible you have different environment variables or drive mappings that CC.Net wouldn't have?</p>
http://stackoverflow.com/questions/1670442/structure-of-nant-build-scripts-and-solution-structure-on-build-server/1730361#17303610Answer by Pedro for Structure of NAnt build scripts and solution structure on build serverPedro2009-11-13T16:34:48Z2009-11-13T16:34:48Z<p>To answer your first question, I would recommend a separate top-level folder for each build project. The problem with having a single tree matching your source repository is that when your build server is trying to run multiple builds at once, one or more will likely fail due to files in use by other processes. Also, you may run into cases where a build script is pulling an older version of the code. In that instance you don't want a different project to accidentally use the incorrect source version.</p>
<p>If your solutions already reference projects from relative paths, you may end up with a structure like this:</p>
<pre><code>-CCNetBuilds
--ProductASource
---Utils
---...
--ProductBSource
---ProductA
----Utils
---ProductB
----BetterUtils
----Data
</code></pre>
<p>In this case, the build for Product B contains part of the Product A source, at the same relative path as your solution already expects. This takes a bit more time to set up in CC.Net, but makes it easier to maintain if the developers have their code set up this way on their machines. The same solution files used in development are used by the build server.</p>
<p>To answer your second question, I prefer Utilities being its own build. If I have unit tests on my Utilities assembly, I would not want them to run for every single product that uses the Utilities. Also, if you have a separate build for Utilities, you can set a dependency in CC.Net so that Product A and B will not attempt to build if the Utilities build is broken. This provides a bit faster feedback that something is wrong.</p>
http://stackoverflow.com/questions/1675138/running-nunit-task-in-cruisecontrol-net-always-throws-errors/1715911#17159111Answer by Pedro for Running NUnit task in CruiseControl.NET always throws errorsPedro2009-11-11T15:25:31Z2009-11-11T15:25:31Z<p>I see from the fusion logs that NUnit appears to have ShadowCopy enabled. In the past, I've run into issues with this turned on. It doesn't appear that the CruiseControl task allows switching this off so you may have to call the command line tool directly to do this.</p>
http://stackoverflow.com/questions/1700568/managing-net-assembly-dependencies-by-dll-reference-rather-than-by-project-refer/1702648#17026482Answer by Pedro for Managing .NET assembly dependencies by dll reference rather than by project reference in VS.Pedro2009-11-09T17:52:18Z2009-11-09T17:52:18Z<p>Is there any reason why you want to allow for arbitrary solutions? It seems like it would be easier to create a single solution and put all of the projects in that solution. I try to avoid multiple solutions wherever possible.</p>
http://stackoverflow.com/questions/1554305/medium-large-solution-visual-studio-build-process-advice-needed/1583988#15839880Answer by Pedro for Medium/Large solution - Visual Studio Build process - Advice neededPedro2009-10-18T04:09:37Z2009-10-18T04:09:37Z<p>One thing that jumps out is the copying of output files to build/bin. Do you have separate sub-folders for Release and Debug builds? I've worked on a large project that used a similar setup to yours, and we frequently ran into issues where someone switched from one build to the other, but not all of the files were necessarily rebuilt (for one reason or another.) The directory often contained a mixture of files from the two builds.</p>
<p>As for post-build events, I try to avoid them as they tend to be difficult to locate when you need to modify them later. They also prove annoying when you need different behavior on a developer machine vs a build server. Instead, I usually create a .bat file or MSBuild script to handle file copying, zipping, etc.</p>
<p>Otherwise, it sounds like you have a decent structure and process. Throughout the project you may run into issues, confusion, etc. Be sure to make note of these as potential items to change, or to consider on future projects. </p>
http://stackoverflow.com/questions/1436340/test-projects-wont-load-in-vs08/1575961#15759611Answer by Pedro for Test Projects Won't Load in VS08Pedro2009-10-16T01:02:07Z2009-10-16T01:02:07Z<p>As SLaks already asked, can you create new Test projects on the computer having issues? If you are able to create new ones without issue, try running a diff between the good project file and a bad one. This may show you if you are running two different versions - likely the bad projects have something included that is incompatible with your installation.</p>
http://stackoverflow.com/questions/1210940/where-to-get-a-complete-list-of-fxcop-warnings-sorted-by-code/1418137#14181370Answer by Pedro for Where to get a complete list of FxCop warnings sorted by code?Pedro2009-09-13T16:29:03Z2009-09-19T17:38:11Z<p>The install of FxCop includes a help file that contains info on each of the warnings. Searching for the warning code will show you details on the particular warning.</p>
<p>Update - Interestingly, the help file is no longer installed (as of version 1.36.) The help file was available in 1.35. Since there have been only a few rule changes between the versions, you could download 1.35 and pull the .chm from there. This will give you most of the rules.</p>
http://stackoverflow.com/questions/1157888/overridable-methods-in-constructors-with-initmembers/1418164#14181640Answer by Pedro for Overridable methods in constructors with InitMembers()Pedro2009-09-13T16:38:42Z2009-09-13T16:38:42Z<p>The error appears because your private constructor is calling a method that can be overridden from a derived class. To fix the warning, you need to remove any calls to virtual methods from within the constructor.</p>
<p>In the example you list, InitMembers uses 'this.Territories', which is causing the violation. According to your later comment you have added a private member - use that instead.</p>
http://stackoverflow.com/questions/1330680/is-there-a-way-to-specify-anything-as-an-argument-to-nunit-mocks-expect-call/1344269#13442691Answer by Pedro for Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?Pedro2009-08-27T23:26:48Z2009-08-27T23:26:48Z<p>Looking at version 2.5.2 of nunit.mocks.dll in Reflector, it doesn't appear there is a method that does what you are looking for. NUnit is open source, so one option is to get the code and add the feature.</p>
http://stackoverflow.com/questions/1199611/nunit-categories-in-combination/1301302#13013020Answer by Pedro for NUnit Categories in combination?Pedro2009-08-19T17:06:14Z2009-08-19T17:06:14Z<p>Sounds like what you need is a third category of "catAandB".</p>
http://stackoverflow.com/questions/1292494/nunit-wont-redirect-console-output/1301262#13012620Answer by Pedro for nunit won't redirect console outputPedro2009-08-19T16:58:52Z2009-08-19T16:58:52Z<p>/out=output.txt appears to be saving only items written out using Console.Writeline</p>
<p>The details of the test run are stored in an xml file, which you can redirect using the /xml switch.</p>
http://stackoverflow.com/questions/1037892/is-using-nunits-sequential-attribute-a-valid-strategy-to-achieve-one-check-per-t/1106031#11060311Answer by Pedro for Is using NUnit's Sequential attribute a valid strategy to achieve one check per test?Pedro2009-07-09T19:38:54Z2009-07-09T19:38:54Z<p>It seems to me that your original two unit tests are easy enough to understand and could be left alone. In a given unit test you want to check one "unit" of functionality, which is not necessarily represented in a single assert.</p>
<p>In the original code, look at MyTest1(). It appears to me that you are using invalid parameters and verifying an error is returned. I would typically name the unit test something like LPSolveReturnsErrorWithInvalidParameters(). This defines one unit to be tested. To prove this functionality is complete, there are three output requirements that must be met</p>
<ol>
<li>The Object property must be null</li>
<li>The Number property is set to -1</li>
<li>The Messages collection contains the appropriate error info</li>
</ol>
<p>It seems reasonable to have these three Asserts in a single unit test. The other potential solutions you provide seem overly complex and unnecessary</p>
http://stackoverflow.com/questions/1053211/adding-a-tab-to-the-add-reference-dialog-in-vs/1065016#10650161Answer by Pedro for Adding a tab to the "Add Reference" dialog in VS?Pedro2009-06-30T17:42:03Z2009-06-30T17:42:03Z<p>I'm not sure about extending the existing dialog, but you might consider creating your own. Here is <a href="http://devlicio.us/blogs/tuna%5Ftoksoz/archive/2009/06/18/vs-addin-fast-add-reference-dialog-no-more-coffee-break.aspx" rel="nofollow">a blog post</a> where someone created a new dialog in order to have a faster load time. You might be able to start with that code and modify as needed.</p>
http://stackoverflow.com/questions/1058167/nunit-tests-in-a-separate-project-same-solution/1059234#10592340Answer by Pedro for NUnit tests in a separate project, same solutionPedro2009-06-29T16:32:01Z2009-06-29T16:32:01Z<p>Instead of setting up NUnit as an External Tool, I set the unit test project as the StartUp project. In the project's Properties screen, set the Start Action to "Start external program" and point it to nunit.exe. In the Start Options section, I specify the test assembly (no path necessary) in the "Command line arguments" box. At this point, simply press F5 to start up NUnit.</p>
http://stackoverflow.com/questions/975993/how-to-avoid-duplicating-test-code/976219#9762191Answer by Pedro for How to avoid duplicating test codePedro2009-06-10T15:11:08Z2009-06-10T15:11:08Z<p>Whether you split the tests into two projects or keep them in one might depend on the number of classes/tests you have. Too many classes in a single project would make it difficult to dig through. If you do split them out, helper/common methods could be thrown into a third assembly, or you could make them public in the unit test assembly, and let the integration assembly reference that one. Make things only as complex as you have to.</p>
http://stackoverflow.com/questions/637255/how-to-coordinate-multiple-builds-in-cruisecontrol-net/956348#9563480Answer by Pedro for How to Coordinate multiple builds in CruiseControl.Net?Pedro2009-06-05T15:01:42Z2009-06-05T15:01:42Z<p>CC.Net allows you to define more than one trigger on a single project. Perhaps you create two project triggers - one for Success and one for Failure.</p>
http://stackoverflow.com/questions/757836/modern-build-tool-suitable-for-visual-studio-msbuild/956301#9563011Answer by Pedro for Modern Build tool suitable for Visual Studio MSBuildPedro2009-06-05T14:50:56Z2009-06-05T14:50:56Z<p>Along with compiling code, Visual Build can be used to pull source and run your analysis tools (and has a nice GUI which lets you hide any "xml mess".) Your CI server should have a method for integrating external logs into a build. </p>
http://stackoverflow.com/questions/934823/simulate-a-7-faced-die-using-a-5-faced-one/934844#9348440Answer by Pedro for Simulate a 7 faced die using a 5 faced onePedro2009-06-01T13:35:39Z2009-06-01T13:35:39Z<p>An interesting blog post on the subject, including responses of possible answers:</p>
<p><a href="http://ncooprider.blogspot.com/2008/02/google-dice-question.html" rel="nofollow">http://ncooprider.blogspot.com/2008/02/google-dice-question.html</a></p>
http://stackoverflow.com/questions/927031/serious-help-on-maintaining-an-ongoing-project/927089#9270892Answer by Pedro for Serious help on maintaining an ongoing projectPedro2009-05-29T17:04:13Z2009-05-29T17:04:13Z<p>The first thing that comes to mind is - Did they provide any sort of transition info (documentation, meetings with those who would be taking over, etc?) As a contractor, the code I write will become the responsibility of someone else. At the end of a project there is usually a hand-off period where the client looks over the code and can ask questions. </p>
<p>Although in your case is an internal project from former employers, it seems a similar process would have been followed. If that's not the case, is there any way you can still send the former employees questions? They certainly won't be as responsive as if they were still in your office, but they might be willing to help the process along...</p>
http://stackoverflow.com/questions/487624/process-kill-during-execution-of-nunit-tests/916399#9163990Answer by Pedro for Process Kill during execution of Nunit testsPedro2009-05-27T15:27:14Z2009-05-27T15:27:14Z<p>Looks rather similar to <a href="http://stackoverflow.com/questions/734484/process-timeout-without-showing-any-error-in-test-execution-using-cc-net/916342#916342">another one of your questions</a>. See answers there for more info.</p>
http://stackoverflow.com/questions/479337/error-msb1009-project-file-does-not-exist-on-running-fromcruisecontrol/916374#9163740Answer by Pedro for error MSB1009: Project file does not exist on running fromCruiseControlPedro2009-05-27T15:22:34Z2009-05-27T15:22:34Z<p>Your sourcecontrol block appears to be placing the code in "C:\source\TestReports\ITRTests\ITRTests\ITRTests" (note the three levels of 'ITRTests') but the msbuild task has a working directory of "C:\source\TestReports\ITRTests\ITRTests\" (only two levels of 'ITRTests')</p>
http://stackoverflow.com/questions/734484/process-timeout-without-showing-any-error-in-test-execution-using-cc-net/916342#9163420Answer by Pedro for Process timeout without showing any error in test execution using cc.netPedro2009-05-27T15:16:34Z2009-05-27T15:16:34Z<p>One possibility is that you have a permission issue. CruiseControl is perhaps running under a service account and has different permissions than your user account (which I'm assuming you use to manually run the tests.) Try logging into the machine as the service account, then see if you can run the unit tests through VS or NUnit.</p>
http://stackoverflow.com/questions/869219/help-running-nunit-from-dos-command-line/916309#9163090Answer by Pedro for Help running NUnit from dos command line.Pedro2009-05-27T15:08:44Z2009-05-27T15:08:44Z<p>I'm not sure how Resharper handles tests, but I do recall TestDriven.Net as being able to 'run test' on methods that were not actually marked as unit tests. Make sure your class is public and marked as a [TestFixture], and that the unit test is a public void method marked as a [Test].</p>
http://stackoverflow.com/questions/853275/prevent-fxcop-from-accessing-gotdotnet/916234#9162341Answer by Pedro for Prevent FxCop from accessing GotDotNetPedro2009-05-27T14:57:28Z2009-05-27T14:57:28Z<p>What version of FxCop are you running? The current version (1.36) was released after gotdotnet was shut down, so there should no longer be references to that site. You can currently find the download <a href="http://www.microsoft.com/Downloads/details.aspx?familyid=9AEAA970-F281-4FB0-ABA1-D59D7ED09772&displaylang=en" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/846098/hidden-features-of-msbuild/848857#8488570Answer by Pedro for Hidden features of msbuildPedro2009-05-11T16:15:10Z2009-05-11T16:15:10Z<p>You can reference one msbuild file from within another. All of our targets, such as those for running NCover, SourceMonitor, Duplo, etc. are within a common targets file. For each project, we create an msbuild file with a PropertyGroup and ItemGroup section, followed by an include to the common targets. This guarantees that all of our builds will run the same set of analysis tasks and save us time writing the scripts.</p>
http://stackoverflow.com/questions/830271/link-to-all-visual-studio-variables/830307#8303075Answer by Pedro for Link to all Visual Studio $ variablesPedro2009-05-06T15:53:05Z2009-05-06T15:53:05Z<p>Try this MSDN page: <a href="http://msdn.microsoft.com/en-us/library/c02as0cs.aspx" rel="nofollow">Macros for Build Commands and Properties</a></p>
http://stackoverflow.com/questions/797311/getting-visual-studio-to-ignore-source-control-bindings-in-a-solution/809291#8092910Answer by Pedro for Getting Visual Studio to ignore source control bindings in a solutionPedro2009-04-30T21:53:07Z2009-04-30T21:53:07Z<p>Try opening the Options dialog (under Tools > Options.) From there you have a Source Control section, with Plug-in Selection as the first sub-item. If you set the "Current source control plug-in" to "None" you might be able to stop the auto-checking.</p>
http://stackoverflow.com/questions/782395/how-to-associate-external-files-with-an-assembly/809083#8090831Answer by Pedro for How to associate external files with an assemblyPedro2009-04-30T21:07:26Z2009-04-30T21:07:26Z<p>What if you create a <a href="http://msdn.microsoft.com/en-us/library/aw2dz878%28VS.80%29.aspx" rel="nofollow">merge module</a> containing the library plus its dependencies? Your installer will then need to reference this module, but you will ensure all of the necessary files will be present.</p>
http://stackoverflow.com/questions/759787/testfixturesetup-failed-occasionally-while-running-through-cc-net/782152#7821521Answer by Pedro for TestFixtureSetUp failed occasionally while running through cc.netPedro2009-04-23T15:04:58Z2009-04-23T15:04:58Z<p>Is it the same cc.net project being forced that is scheduled to run nightly? If not, there may be a difference in how they are configured. If they are the same, I would suggest adding some logging to the test fixture setup code to see if you can track down the problem. Perhaps there is a nightly task running on the server (backup or virus scan perhaps) that is causing the issue. Another possibility is a task running on another server (taking a database offline for example.) I don't believe this is a bug in NUnit.</p>
http://stackoverflow.com/questions/1582596/how-do-i-moq-the-system-io-fileinfo-class-or-any-other-class-without-an-interf/1582648#1582648Comment by Pedro on How do I MOQ the System.IO.FileInfo class... or any other class without an interface?Pedro2009-10-17T17:35:39Z2009-10-17T17:35:39ZYou wouldn't have FileInfo inherit your new interface. Instead, you wrap FileInfo in your own class that does implement the interface. For more info, see the section "Wrap infrastructure that cannot be mocked" from this page: <a href="http://www.lostechies.com/blogs/gabrielschenker/archive/2009/02/27/refactoring-legacy-code.aspx" rel="nofollow">lostechies.com/blogs/gabrielschenker/…</a>http://stackoverflow.com/questions/414309/generate-solution-file-from-list-of-csprojComment by Pedro on Generate Solution File From List of CSProjPedro2009-10-16T01:22:38Z2009-10-16T01:22:38ZOne thing to keep in mind is that some of your projects may reference compiled dlls instead of the projects that created those dlls. When that is the case, VisualStudio's built in refactorings will not cross that boundry. So if a utility method signature is changed, an app that references the utility dll instead of the project won't be automatically changed to match.http://stackoverflow.com/questions/414309/generate-solution-file-from-list-of-csproj/414352#414352Comment by Pedro on Generate Solution File From List of CSProjPedro2009-10-16T01:16:13Z2009-10-16T01:16:13ZThe original question stated that manually adding them wasn't feasible.http://stackoverflow.com/questions/414309/generate-solution-file-from-list-of-csproj/414445#414445Comment by Pedro on Generate Solution File From List of CSProjPedro2009-10-16T01:14:41Z2009-10-16T01:14:41ZJust guessing here, but your answer would be far more helpful if you were to provide the exact NAnt task that merges all of the projects.http://stackoverflow.com/questions/1526290/why-does-specifying-a-numeric-value-for-a-controls-property-in-the-designer-resu/1531082#1531082Comment by Pedro on Why does specifying a numeric value for a control's property in the designer result in new decimal(new int[] {... in the code?Pedro2009-10-07T18:03:29Z2009-10-07T18:03:29ZMost of the time, the designer code isn't read by humans, so that wasn't a concern for the VS developers.http://stackoverflow.com/questions/1120307/free-visual-studio-build-automation-solution/1120548#1120548Comment by Pedro on Free Visual Studio Build Automation SolutionPedro2009-07-14T13:45:32Z2009-07-14T13:45:32ZBefore creating your own MSBuild tasks, I would recommend searching the web. For example, most SVN tasks you might need are part of the MSBuild Community Tasks, located here: <a href="http://msbuildtasks.tigris.org/" rel="nofollow">msbuildtasks.tigris.org</a>http://stackoverflow.com/questions/1019567/tool-for-finding-ways-to-get-an-object-instance-inside-the-debuggerComment by Pedro on Tool for finding ways to get an object instance inside the debugger?Pedro2009-07-01T17:59:55Z2009-07-01T17:59:55ZThis is a bit unclear. Could you provide an example?http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423944#423944Comment by Pedro on What's your favorite "programmer ignorance" pet peeve?Pedro2009-06-23T14:50:48Z2009-06-23T14:50:48ZFortunately, VisualStudio allows you to break from execution for any thrown exception. At that point you get to see just how many people are eating unnecessary exceptions.http://stackoverflow.com/questions/1009501/how-to-add-files-and-dirs-to-a-zip-file-without-the-root-dirComment by Pedro on How to add files and dirs to a zip file without the root dir ?Pedro2009-06-17T21:28:08Z2009-06-17T21:28:08ZWhat utility or OS are you using?http://stackoverflow.com/questions/975993/how-to-avoid-duplicating-test-code/979354#979354Comment by Pedro on How to avoid duplicating test codePedro2009-06-12T15:31:38Z2009-06-12T15:31:38ZRemember, you can have Assert statements in methods that don't have the [TestMethod] attribute. You could thus have two tests perform partially same functionality by calling a third method referenced by both, whether in the same assembly or in a different one.http://stackoverflow.com/questions/975993/how-to-avoid-duplicating-test-code/976219#976219Comment by Pedro on How to avoid duplicating test codePedro2009-06-12T15:28:31Z2009-06-12T15:28:31ZIf you are referring to the common methods, they could be declared static. Or you could instantiate your helper class. You don't have to derive one class from the other.http://stackoverflow.com/questions/533100/make-qa-drops-of-only-selected-builds-in-cruisecontrol-net/534722#534722Comment by Pedro on Make QA Drops of Only Selected Builds In CruiseControl.NetPedro2009-06-05T14:56:34Z2009-06-05T14:56:34Z(+1) We use CC.Net and generally only care to push the latest build to QA. The idea of running a secondary process on old build artifacts does sound interesting thoughhttp://stackoverflow.com/questions/602281/where-should-i-store-common-targets-for-team-builds/706144#706144Comment by Pedro on Where should I store common targets for team builds?Pedro2009-06-03T17:14:23Z2009-06-03T17:14:23Z(+1) I was unaware of the MSBuildExtensionsPath, which according to documentation, "is a useful place to put custom target files."
<a href="http://msdn.microsoft.com/en-us/library/ms164309.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
http://stackoverflow.com/questions/934787/why-does-net-warn-for-unused-variables-but-not-unused-parameter/934802#934802Comment by Pedro on Why does .NET warn for 'Unused Variables' but not 'unused parameter'?Pedro2009-06-01T13:32:10Z2009-06-01T13:32:10ZFxCop is another tool that will warn about unused parametershttp://stackoverflow.com/questions/730766/triggers-inside-cruisecontrol-net/738371#738371Comment by Pedro on triggers inside cruisecontrol.netPedro2009-05-27T15:35:43Z2009-05-27T15:35:43ZA single project can't conditionally perform actions based on which trigger was pulled. You need to set up several projects.