Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#

Visual Studio 2010 Add-in that Adds Diff Tools, Web Project Reporting and Some Subversion Support

Rate me:
Please Sign up or sign in to vote.
4.56/5 (13 votes)
12 May 2010CPOL4 min read 162.9K   2.7K   98  
With this add-in, you get new tools and commands that boost your productivity while developing, and some helpful reports especially for web projects - Version 2.2
<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html style="border:0px" onscroll="menubar.style.pixelTop=window.document.documentElement.scrollTop">
  <head>
    <meta http-equiv='Expires' content='0'>
    <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
    <title>Folder differences</title>
    <style>
      BODY {FONT-FAMILY: Arial,Verdana; FONT-SIZE: 9pt; COLOR: black; margin:0px;padding:0px;BACKGROUND-COLOR:#dbe7f3}
      #header { background-color:#DDDDDD;border-bottom:#395d9a 2px solid; padding-top:24px }
      #menubar { BORDER-BOTTOM: gray 1px solid;background-color:#DDDDDD;position:absolute;top:0px;left:0px }
      #header table { TABLE-LAYOUT: fixed }
      #header h1 {FONT-SIZE: 11pt;margin:0px;padding:0px}
      #header a {vertical-align:middle}

      .code { FONT-SIZE: 8pt; margin-left: 6px; FONT-FAMILY:Courier New; WHITE-SPACE: pre; BACKGROUND-COLOR: white }
      
      TABLE {EMPTY-CELLS:show;BORDER-COLLAPSE:collapse}
      THEAD TR {BACKGROUND-COLOR:silver; }
      #resultTab THEAD TD {padding-right:2px; border-bottom:1px solid gray }
      .i {COLOR:black; BACKGROUND-COLOR:#A0FFA0}
      .d {COLOR:black; BACKGROUND-COLOR:#FFA0A0}
      .c {COLOR:black; BACKGROUND-COLOR:white;}
      IMG {border:0px};
    </style>
  </head>
  <body>
    <div id='header'>
      <table id='menubar'>
        <tr>
          <td style="BORDER-RIGHT: gray 1px solid; WIDTH: 48px">
            <A href="dte:back"><IMG src="[ROOT]\back.gif"></A>
            <A href="dte:reload"><IMG src="[ROOT]\refresh.gif"></A>
          </td>
          <td style="PADDING-LEFT:4px">
            <h1>Folder differences</h1></td>
        </tr>
      </table>
      <table style="TABLE-LAYOUT: fixed" ID="Table1">
        <tbody>
          <tr>
            <td width="70">new files:</td>
            <td width="*"><a class='i' id='newfile' href="dte:folder?folder=[NEWFOLDERENC]">[NEWFOLDER]</a></td>
          </tr>
          <tr>
            <td width="70">old files:</td>
            <td width="*"><a class='d' id='oldfile' href="dte:folder?folder=[OLDFOLDERENC]">[OLDFOLDER]</a></td>
          </tr>
        </tbody>
      </table>
    </div>
    <table id="resultTab" class='code' cellpadding='0' cellspacing='0'>
      <colgroup>
        <col align='left' width='300'>
        <col align='left' width='200'>
      </colgroup>
      <thead><tr>
          <td>Folder or Filename</td><td>Commands</td>
        </tr></thead>
      <tbody>
        [RESULT]
      </tbody>
    </table>
  </body>
</html>

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
Architect Deutsche Bank AG
Germany Germany
see https://www.mathertel.de

Comments and Discussions