1 | <!DOCTYPE html> |
---|
2 | <!-- saved from url=(0014)about:internet --> |
---|
3 | <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><link type="text/css" rel="stylesheet" href="_UpgradeReport_Files\UpgradeReport.css" /><title _locID="ConversionReport0"> |
---|
4 | Migration Report |
---|
5 | </title><script type="text/javascript" language="javascript"> |
---|
6 | |
---|
7 | // Startup |
---|
8 | // Hook up the the loaded event for the document/window, to linkify the document content |
---|
9 | var startupFunction = function() { linkifyElement("messages"); }; |
---|
10 | |
---|
11 | if(window.attachEvent) |
---|
12 | { |
---|
13 | window.attachEvent('onload', startupFunction); |
---|
14 | } |
---|
15 | else if (window.addEventListener) |
---|
16 | { |
---|
17 | window.addEventListener('load', startupFunction, false); |
---|
18 | } |
---|
19 | else |
---|
20 | { |
---|
21 | document.addEventListener('load', startupFunction, false); |
---|
22 | } |
---|
23 | |
---|
24 | // Toggles the visibility of table rows with the specified name |
---|
25 | function toggleTableRowsByName(name) |
---|
26 | { |
---|
27 | var allRows = document.getElementsByTagName('tr'); |
---|
28 | for (i=0; i < allRows.length; i++) |
---|
29 | { |
---|
30 | var currentName = allRows[i].getAttribute('name'); |
---|
31 | if(!!currentName && currentName.indexOf(name) == 0) |
---|
32 | { |
---|
33 | var isVisible = allRows[i].style.display == ''; |
---|
34 | isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = ''; |
---|
35 | } |
---|
36 | } |
---|
37 | } |
---|
38 | |
---|
39 | function scrollToFirstVisibleRow(name) |
---|
40 | { |
---|
41 | var allRows = document.getElementsByTagName('tr'); |
---|
42 | for (i=0; i < allRows.length; i++) |
---|
43 | { |
---|
44 | var currentName = allRows[i].getAttribute('name'); |
---|
45 | var isVisible = allRows[i].style.display == ''; |
---|
46 | if(!!currentName && currentName.indexOf(name) == 0 && isVisible) |
---|
47 | { |
---|
48 | allRows[i].scrollIntoView(true); |
---|
49 | return true; |
---|
50 | } |
---|
51 | } |
---|
52 | |
---|
53 | return false; |
---|
54 | } |
---|
55 | |
---|
56 | // Linkifies the specified text content, replaces candidate links with html links |
---|
57 | function linkify(text) |
---|
58 | { |
---|
59 | if(!text || 0 === text.length) |
---|
60 | { |
---|
61 | return text; |
---|
62 | } |
---|
63 | |
---|
64 | // Find http, https and ftp links and replace them with hyper links |
---|
65 | var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi; |
---|
66 | |
---|
67 | return text.replace(urlLink, '<a href="$&">$&</a>') ; |
---|
68 | } |
---|
69 | |
---|
70 | // Linkifies the specified element by ID |
---|
71 | function linkifyElement(id) |
---|
72 | { |
---|
73 | var element = document.getElementById(id); |
---|
74 | if(!!element) |
---|
75 | { |
---|
76 | element.innerHTML = linkify(element.innerHTML); |
---|
77 | } |
---|
78 | } |
---|
79 | |
---|
80 | function ToggleMessageVisibility(projectName) |
---|
81 | { |
---|
82 | if(!projectName || 0 === projectName.length) |
---|
83 | { |
---|
84 | return; |
---|
85 | } |
---|
86 | |
---|
87 | toggleTableRowsByName("MessageRowClass" + projectName); |
---|
88 | toggleTableRowsByName('MessageRowHeaderShow' + projectName); |
---|
89 | toggleTableRowsByName('MessageRowHeaderHide' + projectName); |
---|
90 | } |
---|
91 | |
---|
92 | function ScrollToFirstVisibleMessage(projectName) |
---|
93 | { |
---|
94 | if(!projectName || 0 === projectName.length) |
---|
95 | { |
---|
96 | return; |
---|
97 | } |
---|
98 | |
---|
99 | // First try the 'Show messages' row |
---|
100 | if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName)) |
---|
101 | { |
---|
102 | // Failed to find a visible row for 'Show messages', try an actual message row |
---|
103 | scrollToFirstVisibleRow('MessageRowClass' + projectName); |
---|
104 | } |
---|
105 | } |
---|
106 | </script></head><body><h1 _locID="ConversionReport"> |
---|
107 | Migration Report - </h1><div id="content"><h2 _locID="OverviewTitle">Overview</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">Project</th><th _locID="PathTableHeader">Path</th><th _locID="ErrorsTableHeader">Errors</th><th _locID="WarningsTableHeader">Warnings</th><th _locID="MessagesTableHeader">Messages</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td><strong><a href="#Pong">Pong</a></strong></td><td>Pong\Pong\Pong.csproj</td><td class="textCentered"><a href="#PongError">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td><strong><a href="#PongContent">PongContent</a></strong></td><td>Pong\PongContent\PongContent.contentproj</td><td class="textCentered"><a href="#PongContentError">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Success.png" alt="Success" /></td><td><strong><a href="#Solution"><span _locID="OverviewSolutionSpan">Solution</span></a></strong></td><td>Pong.sln</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('Solution'); return false;">1</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">Solution and projects</h2><div id="messages"><a name="Pong" /><h3>Pong</h3><table><tr id="PongHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassPong"><td><a name="PongError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Pong\Pong\Pong.csproj: |
---|
108 | </strong><span>The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?prd=12395&pver=11&sbp=ProjectTypeDeprecated&plcid=0x409&clcid=0x409&ar=MSDN&sar=ProjectCompatibility&o1=6D335F3A-9D43-41b4-9D22-F6F17C4BE596</span></td></tr></table><a name="PongContent" /><h3>PongContent</h3><table><tr id="PongContentHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassPongContent"><td><a name="PongContentError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Pong\PongContent\PongContent.contentproj: |
---|
109 | </strong><span>The application which this project type is based on was not found. Please try this link for further information: http://go.microsoft.com/fwlink/?prd=12395&pver=11&sbp=ProjectTypeDeprecated&plcid=0x409&clcid=0x409&ar=MSDN&sar=ProjectCompatibility&o1=96E2B04D-8817-42C6-938A-82C39BA4D311</span></td></tr></table><a name="Solution" /><h3 _locID="ProjectDisplayNameHeader">Solution</h3><table><tr id="SolutionHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="MessageRowHeaderShowSolution"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
---|
110 | Show 1 additional messages |
---|
111 | </a></td></tr><tr name="MessageRowClassSolution" style="display: none"><td><a name="SolutionMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>Pong.sln: |
---|
112 | </strong><span>The solution file does not require migration.</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSolution"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
---|
113 | Hide 1 additional messages |
---|
114 | </a></td></tr></table></div></div></body></html> |
---|