Click here to Skip to main content
15,895,709 members
Articles / Programming Languages / C#

Code Review Plug-in for Visual Studio 2008, ReviewPal

Rate me:
Please Sign up or sign in to vote.
4.59/5 (18 votes)
4 Nov 2009CPOL5 min read 95.2K   1.1K   61  
ReviewPal is a Visual Studio 2008 IDE plug-in to help out doing code reviews. Helps the user with collecting review comments and reporting them within the IDE with easy navigation.
using System;

namespace ReviewPal
{
    [Serializable]
    public class Review
    {
        public int ReviewId{ get; set;}
        public int Line { get; set; }
        public string File { get; set; }
        public string Project { get; set; }

        public string Status{ get; set;}
        public string Comment{ get; set;}
        public string Description { get; set; }
        public string Severity { get; set; }
        public string DefectType { get; set; }
        public string InjectedPhase { get; set; }
        public string RevieweeComment { get; set; }
        public string ReExamined { get; set; }
        public string ReviewerComment { get; set; }

        public static string Column_ReviewId = "ID";
        public static string Column_Line = "Line";
        public static string Column_File = "File";
        public static string Column_Project = "Project";
        public static string Column_Status = "Status";
        public static string Column_Comment = "Comment";
        public static string Column_Description = "Description";
        public static string Column_Severity = "Severity";
        public static string Column_DefectType = "DefectType";
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Zone24x7
Sri Lanka Sri Lanka
Working on .Net stuff, over five years of experience mainly on Web development.
MCP,MCAD,MCSD

http://chathurangaw.blogspot.com/

Comments and Discussions