Pedro

817
Reputation
137 views

Registered User

Name Pedro
Member for 1 year
Seen 15 hours ago
Website
Location Tulsa, OK
Age 30
Contractor with a small shop in Tulsa. Coding in C# with a love of CI tools (CC.Net, NUnit, SourceMonitor, etc.)
2d
accepted Using Studio’s “Custom Tool” in MSBuild
Nov
18
accepted Structure of NAnt build scripts and solution structure on build server
Nov
13
answered cruisecontrol sourcesafe block
Nov
13
answered CC.Net Access Denied Error
Nov
13
answered Structure of NAnt build scripts and solution structure on build server
Nov
11
answered Running NUnit task in CruiseControl.NET always throws errors
Nov
9
answered Managing .NET assembly dependencies by dll reference rather than by project reference in VS.
Oct
31
accepted Modern Build tool suitable for Visual Studio MSBuild
Oct
18
answered Medium/Large solution - Visual Studio Build process - Advice needed
Oct
17
comment How do I MOQ the System.IO.FileInfo class… or any other class without an interface?
You 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: lostechies.com/blogs/gabrielschenker/…
Oct
16
comment Generate Solution File From List of CSProj
One 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.
Oct
16
comment Generate Solution File From List of CSProj
The original question stated that manually adding them wasn't feasible.
Oct
16
comment Generate Solution File From List of CSProj
Just 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.
Oct
16
answered Test Projects Won’t Load in VS08
Oct
7
comment Why does specifying a numeric value for a control’s property in the designer result in new decimal(new int[] {… in the code?
Most of the time, the designer code isn't read by humans, so that wasn't a concern for the VS developers.
Sep
19
revised Where to get a complete list of FxCop warnings sorted by code?
Corrected help file info - recommended downloading the previous version
Sep
17
awarded  Yearling
Sep
13
answered Overridable methods in constructors with InitMembers()
Sep
13
answered Where to get a complete list of FxCop warnings sorted by code?
Aug
28
accepted Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?
Aug
27
answered Is there a way to specify ANYTHING as an argument to NUnit Mocks Expect call?
Aug
27
accepted release configuration management
Aug
19
answered NUnit Categories in combination?
Aug
19
answered nunit won’t redirect console output
Jul
14
comment Free Visual Studio Build Automation Solution
Before 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: msbuildtasks.tigris.org
Jul
10
accepted Is using NUnit’s Sequential attribute a valid strategy to achieve one check per test?
Jul
9
answered Is using NUnit’s Sequential attribute a valid strategy to achieve one check per test?
Jul
1
comment Tool for finding ways to get an object instance inside the debugger?
This is a bit unclear. Could you provide an example?
Jul
1
accepted Adding a tab to the “Add Reference” dialog in VS?
Jun
30
answered Adding a tab to the “Add Reference” dialog in VS?
Jun
29
answered NUnit tests in a separate project, same solution
Jun
23
comment What’s your favorite “programmer ignorance” pet peeve?
Fortunately, 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.
Jun
17
comment How to add files and dirs to a zip file without the root dir ?
What utility or OS are you using?
Jun
12
comment How to avoid duplicating test code
Remember, 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.
Jun
12
comment How to avoid duplicating test code
If 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.
Jun
10
answered How to avoid duplicating test code