Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am looking for a .NET code coverage tool. I have tried free version of NCover but it is working only for one .NET solution whereas I have 26 Solutions and each solution having about 10-30 projects total is about 560 projects. I use a common directory for building all solutions. All these project belong to a single product which having hundreds of DLL files and 8 exe files. I am unable to run any code coverage tool for all the 26 solutions at a time.
Please suggest me any good Code Coverage Tool. I can also think about paid version if it is suitable for me.
There is no need to worry.
You can solve your purpose using free version of NCOver.
But for that you have to do some extra effort.
Generate Report for Each solution separately and save each report.
After completing Report generation from all solutions Open NCover Explorer.
Choose merge XML of more than one solutions and in this way you will be able to merge the report. Thus your combined reporrt for multiple solution is ready.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
how to create a file. exe in VS 2013 ultimate and add the layers in the project executable
My solution is called "control" within the solution and have 4 projects "AcessoBancoDados", "Business", "transfer", "telaAcesso"
if I select the project access screen and go on projects / properties / tab publish the VS will generate an exe file., but only screen access, and other projects as part of the solution, how to add, because if I run the file . exe on my pc just fine, but if I run the file in another pc it will not find the dll file, because in my view the only VS generated. exe file of a project and not the entire solution.
or is there another way to generate an executable in VS.
thanks
Get WIX - WIndows Installer for XML, made by microsoft but open source and the mental successor and adult brother of the kind of not too smart setup projects that existed pre VS 1013.
Read the documentation, learn it, make a setup, finished.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a large c# project that depends on a number of other projects.
I'd like to create\use a build automation script of sorts.
The process would look something like:
- Clone project X from Git, run unit tests, compile.
- Clone project Y from Git, run unit tests, compile.
- Clone project Z from Git, run unit tests, compile.
Project Z depends on Y and Y depends on X.
I'm aware that Team Foundation Server does much of this, but I'm looking for a lighter solution.
What are the open source alternatives to TFS?
NAnt will also do all the basic CI tasks, and is open source. http://nant.sourceforge.net/
Look at teamcity. Much easier to use. We migrated our builds from TFS to teamcity. It's free for upto 3 build agents and 20 build configurations (which is good enough for mid level teams) but the Enterprise version is not that expensive too.
http://www.jetbrains.com/teamcity/
Jenkins is another option too.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there an open-source tool that generates HTML-based reports for unit test code coverage for Mono/C# projects running on Linux or Mac OS X on the same quality level that other platforms do (Node.js and Ruby have all excelent code coverage reporting tools)?
All the tools out there that I could find (like Opencover, NCover, etc) look outdated/obsolete or low quality.
Have you checked MonoCov (project page and GitHub)?
There is a new project from one of the mono developers: https://github.com/inorton/XR.Baboon
It appears to be still in heavy development, but it works for me.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I did a search online and was not able to find any tool or app that were designed to do this. I am looking for a set of C# class libraries you can link or reference into your code, or external command-line application that would allow me to dynamically compare two database schemas and generate scripts for transforming one database into the other, without loosing any data in a relatively speedy fashion. All tools I have seen so far, works in a static manner, i.e. you are comparing one db to the next to generate change scripts on your own local system. I am planning to include this in an installer, so it will run on a remote system therefore making it critical that it is possible to automate the process. Also licensing should be somewhat successible to that fact, i.e. a small fee per install is acceptable, or a larger one time fee and no inclusion fee.
Redgate can do that. Try their site http://www.red-gate.com/products/sql-development/sql-compare/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a free, syntax-highlighting, possibly autocompleting "Programmer's textbox" style control for use in a Visual Studio Windows Forms or WPF project. It should work with C# and self-defined languages, and the licence should permit its use in a closed, in-house development tool.
There are pay-for solutions available - something like http://www.syncfusion.com/products/user-interface-edition/windows-forms/Edit would work fine - but I am looking for something simpler, and would prefer not to pay for unnecessary functionality. Any ideas?
I've been using the SharpCode.TextEditor for a few cases, and it works quite well - including syntax highlighting and all.
Check out this Using ICSharpCode.TextEditor article on CodeProject for an intro.
To download it, go to the SharpDevelop web site and download the latest sources. One of the projects included is the Text editor, which you can easily isolate into its own assembly or sub project - you get all the source code, after all!
Scintilla is a powerful, open-source code editing component, and there is a .NET control available for it.