forked from MvvmCross/MvvmCross
-
Notifications
You must be signed in to change notification settings - Fork 1
/
UpgradeLog.htm
237 lines (224 loc) · 294 KB
/
UpgradeLog.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<!-- saved from url=(0014)about:internet -->
<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">
Migration Report
</title><script type="text/javascript" language="javascript">
// Startup
// Hook up the the loaded event for the document/window, to linkify the document content
var startupFunction = function() { linkifyElement("messages"); };
if(window.attachEvent)
{
window.attachEvent('onload', startupFunction);
}
else if (window.addEventListener)
{
window.addEventListener('load', startupFunction, false);
}
else
{
document.addEventListener('load', startupFunction, false);
}
// Toggles the visibility of table rows with the specified name
function toggleTableRowsByName(name)
{
var allRows = document.getElementsByTagName('tr');
for (i=0; i < allRows.length; i++)
{
var currentName = allRows[i].getAttribute('name');
if(!!currentName && currentName.indexOf(name) == 0)
{
var isVisible = allRows[i].style.display == '';
isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = '';
}
}
}
function scrollToFirstVisibleRow(name)
{
var allRows = document.getElementsByTagName('tr');
for (i=0; i < allRows.length; i++)
{
var currentName = allRows[i].getAttribute('name');
var isVisible = allRows[i].style.display == '';
if(!!currentName && currentName.indexOf(name) == 0 && isVisible)
{
allRows[i].scrollIntoView(true);
return true;
}
}
return false;
}
// Linkifies the specified text content, replaces candidate links with html links
function linkify(text)
{
if(!text || 0 === text.length)
{
return text;
}
// Find http, https and ftp links and replace them with hyper links
var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi;
return text.replace(urlLink, '<a href="$&">$&</a>') ;
}
// Linkifies the specified element by ID
function linkifyElement(id)
{
var element = document.getElementById(id);
if(!!element)
{
element.innerHTML = linkify(element.innerHTML);
}
}
function ToggleMessageVisibility(projectName)
{
if(!projectName || 0 === projectName.length)
{
return;
}
toggleTableRowsByName("MessageRowClass" + projectName);
toggleTableRowsByName('MessageRowHeaderShow' + projectName);
toggleTableRowsByName('MessageRowHeaderHide' + projectName);
}
function ScrollToFirstVisibleMessage(projectName)
{
if(!projectName || 0 === projectName.length)
{
return;
}
// First try the 'Show messages' row
if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName))
{
// Failed to find a visible row for 'Show messages', try an actual message row
scrollToFirstVisibleRow('MessageRowClass' + projectName);
}
}
</script></head><body><h1 _locID="ConversionReport">
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="#BestSellers.Droid">BestSellers.Droid</a></strong></td><td>Sample - BestSellers\BestSellers\BestSellers.Droid\BestSellers.Droid.csproj</td><td class="textCentered"><a href="#BestSellers.DroidError">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="#BestSellers.Touch">BestSellers.Touch</a></strong></td><td>Sample - BestSellers\BestSellers\BestSellers.Touch\BestSellers.Touch.csproj</td><td class="textCentered"><a href="#BestSellers.TouchError">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="#BestSellers.WindowsPhone">BestSellers.WindowsPhone</a></strong></td><td>Sample - BestSellers\BestSellers\BestSellers.WindowsPhone\BestSellers.WindowsPhone.csproj</td><td class="textCentered"><a href="#BestSellers.WindowsPhoneError">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="#Cirrious.Conference.UI.Droid">Cirrious.Conference.UI.Droid</a></strong></td><td>Sample - CirriousConference\Cirrious.Conference.UI.Droid\Cirrious.Conference.UI.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.Conference.UI.DroidError">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="#Cirrious.Conference.UI.Touch">Cirrious.Conference.UI.Touch</a></strong></td><td>Sample - CirriousConference\Cirrious.Conference.UI.Touch\Cirrious.Conference.UI.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.Conference.UI.TouchError">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="#Cirrious.Conference.UI.WP7">Cirrious.Conference.UI.WP7</a></strong></td><td>Sample - CirriousConference\Cirrious.Conference.UI.WP7\Cirrious.Conference.UI.WP7.csproj</td><td class="textCentered"><a href="#Cirrious.Conference.UI.WP7Error">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="#Cirrious.MvvmCross.Binding.Droid">Cirrious.MvvmCross.Binding.Droid</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Binding.Droid\Cirrious.MvvmCross.Binding.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Binding.DroidError">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="#Cirrious.MvvmCross.Binding.Touch">Cirrious.MvvmCross.Binding.Touch</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Binding.Touch\Cirrious.MvvmCross.Binding.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Binding.TouchError">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="#Cirrious.MvvmCross.Dialog.Touch">Cirrious.MvvmCross.Dialog.Touch</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Dialog.Touch\Cirrious.MvvmCross.Dialog.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Dialog.TouchError">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="#Cirrious.MvvmCross.Droid">Cirrious.MvvmCross.Droid</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Droid\Cirrious.MvvmCross.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.DroidError">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="#Cirrious.MvvmCross.Droid.Maps">Cirrious.MvvmCross.Droid.Maps</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Droid.Maps\Cirrious.MvvmCross.Droid.Maps.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Droid.MapsError">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="#Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone">Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Bookmarks\Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone\Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.Color.Droid">Cirrious.MvvmCross.Plugins.Color.Droid</a></strong></td><td>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.Droid\Cirrious.MvvmCross.Plugins.Color.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Color.DroidError">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="#Cirrious.MvvmCross.Plugins.Color.Touch">Cirrious.MvvmCross.Plugins.Color.Touch</a></strong></td><td>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.Touch\Cirrious.MvvmCross.Plugins.Color.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Color.TouchError">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="#Cirrious.MvvmCross.Plugins.Color.WindowsPhone">Cirrious.MvvmCross.Plugins.Color.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.WindowsPhone\Cirrious.MvvmCross.Plugins.Color.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Color.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.DownloadCache.Droid">Cirrious.MvvmCross.Plugins.DownloadCache.Droid</a></strong></td><td>Cirrious\Plugins\DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache.Droid\Cirrious.MvvmCross.Plugins.DownloadCache.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.DownloadCache.DroidError">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="#Cirrious.MvvmCross.Plugins.DownloadCache.Touch">Cirrious.MvvmCross.Plugins.DownloadCache.Touch</a></strong></td><td>Cirrious\Plugins\DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache.Touch\Cirrious.MvvmCross.Plugins.DownloadCache.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.DownloadCache.TouchError">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="#Cirrious.MvvmCross.Plugins.Email.Droid">Cirrious.MvvmCross.Plugins.Email.Droid</a></strong></td><td>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.Droid\Cirrious.MvvmCross.Plugins.Email.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Email.DroidError">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="#Cirrious.MvvmCross.Plugins.Email.Touch">Cirrious.MvvmCross.Plugins.Email.Touch</a></strong></td><td>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.Touch\Cirrious.MvvmCross.Plugins.Email.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Email.TouchError">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="#Cirrious.MvvmCross.Plugins.Email.WindowsPhone">Cirrious.MvvmCross.Plugins.Email.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.WindowsPhone\Cirrious.MvvmCross.Plugins.Email.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Email.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.File.Droid">Cirrious.MvvmCross.Plugins.File.Droid</a></strong></td><td>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.Droid\Cirrious.MvvmCross.Plugins.File.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.File.DroidError">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="#Cirrious.MvvmCross.Plugins.File.Touch">Cirrious.MvvmCross.Plugins.File.Touch</a></strong></td><td>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.Touch\Cirrious.MvvmCross.Plugins.File.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.File.TouchError">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="#Cirrious.MvvmCross.Plugins.File.WindowsPhone">Cirrious.MvvmCross.Plugins.File.WindowsPhone</a></strong></td><td>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.WindowsPhone\Cirrious.MvvmCross.Plugins.File.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.File.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.Location.Droid">Cirrious.MvvmCross.Plugins.Location.Droid</a></strong></td><td>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.Droid\Cirrious.MvvmCross.Plugins.Location.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Location.DroidError">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="#Cirrious.MvvmCross.Plugins.Location.Touch">Cirrious.MvvmCross.Plugins.Location.Touch</a></strong></td><td>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.Touch\Cirrious.MvvmCross.Plugins.Location.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Location.TouchError">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="#Cirrious.MvvmCross.Plugins.Location.WindowsPhone">Cirrious.MvvmCross.Plugins.Location.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.WindowsPhone\Cirrious.MvvmCross.Plugins.Location.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Location.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.PhoneCall.Droid">Cirrious.MvvmCross.Plugins.PhoneCall.Droid</a></strong></td><td>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.Droid\Cirrious.MvvmCross.Plugins.PhoneCall.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PhoneCall.DroidError">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="#Cirrious.MvvmCross.Plugins.PhoneCall.Touch">Cirrious.MvvmCross.Plugins.PhoneCall.Touch</a></strong></td><td>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.Touch\Cirrious.MvvmCross.Plugins.PhoneCall.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PhoneCall.TouchError">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="#Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone">Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone</a></strong></td><td>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone\Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.PictureChooser.Droid">Cirrious.MvvmCross.Plugins.PictureChooser.Droid</a></strong></td><td>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.Droid\Cirrious.MvvmCross.Plugins.PictureChooser.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PictureChooser.DroidError">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="#Cirrious.MvvmCross.Plugins.PictureChooser.Touch">Cirrious.MvvmCross.Plugins.PictureChooser.Touch</a></strong></td><td>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.Touch\Cirrious.MvvmCross.Plugins.PictureChooser.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PictureChooser.TouchError">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="#Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone">Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone</a></strong></td><td>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone\Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.ResourceLoader.Droid">Cirrious.MvvmCross.Plugins.ResourceLoader.Droid</a></strong></td><td>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.Droid\Cirrious.MvvmCross.Plugins.ResourceLoader.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ResourceLoader.DroidError">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="#Cirrious.MvvmCross.Plugins.ResourceLoader.Touch">Cirrious.MvvmCross.Plugins.ResourceLoader.Touch</a></strong></td><td>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.Touch\Cirrious.MvvmCross.Plugins.ResourceLoader.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ResourceLoader.TouchError">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="#Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone">Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone</a></strong></td><td>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone\Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.Share.Droid">Cirrious.MvvmCross.Plugins.Share.Droid</a></strong></td><td>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.Droid\Cirrious.MvvmCross.Plugins.Share.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Share.DroidError">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="#Cirrious.MvvmCross.Plugins.Share.Touch">Cirrious.MvvmCross.Plugins.Share.Touch</a></strong></td><td>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.Touch\Cirrious.MvvmCross.Plugins.Share.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Share.TouchError">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="#Cirrious.MvvmCross.Plugins.Share.WindowsPhone">Cirrious.MvvmCross.Plugins.Share.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.WindowsPhone\Cirrious.MvvmCross.Plugins.Share.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Share.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone">Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone</a></strong></td><td>Cirrious\Plugins\SoundEffects\Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone\Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.ThreadUtils.Droid">Cirrious.MvvmCross.Plugins.ThreadUtils.Droid</a></strong></td><td>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.Droid\Cirrious.MvvmCross.Plugins.ThreadUtils.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ThreadUtils.DroidError">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="#Cirrious.MvvmCross.Plugins.ThreadUtils.Touch">Cirrious.MvvmCross.Plugins.ThreadUtils.Touch</a></strong></td><td>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.Touch\Cirrious.MvvmCross.Plugins.ThreadUtils.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ThreadUtils.TouchError">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="#Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone">Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone</a></strong></td><td>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone\Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.Visibility.Droid">Cirrious.MvvmCross.Plugins.Visibility.Droid</a></strong></td><td>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.Droid\Cirrious.MvvmCross.Plugins.Visibility.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Visibility.DroidError">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="#Cirrious.MvvmCross.Plugins.Visibility.Touch">Cirrious.MvvmCross.Plugins.Visibility.Touch</a></strong></td><td>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.Touch\Cirrious.MvvmCross.Plugins.Visibility.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Visibility.TouchError">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="#Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone">Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone</a></strong></td><td>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone\Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.Visibility.WindowsPhoneError">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="#Cirrious.MvvmCross.Plugins.WebBrowser.Droid">Cirrious.MvvmCross.Plugins.WebBrowser.Droid</a></strong></td><td>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.Droid\Cirrious.MvvmCross.Plugins.WebBrowser.Droid.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.WebBrowser.DroidError">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="#Cirrious.MvvmCross.Plugins.WebBrowser.Touch">Cirrious.MvvmCross.Plugins.WebBrowser.Touch</a></strong></td><td>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.Touch\Cirrious.MvvmCross.Plugins.WebBrowser.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.WebBrowser.TouchError">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="#Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone">Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone</a></strong></td><td>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone\Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhoneError">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="#Cirrious.MvvmCross.Touch">Cirrious.MvvmCross.Touch</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Touch\Cirrious.MvvmCross.Touch.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.TouchError">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="#Cirrious.MvvmCross.WindowsPhone">Cirrious.MvvmCross.WindowsPhone</a></strong></td><td>Cirrious\Cirrious.MvvmCross.WindowsPhone\Cirrious.MvvmCross.WindowsPhone.csproj</td><td class="textCentered"><a href="#Cirrious.MvvmCross.WindowsPhoneError">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="#CustomerManagement.Droid">CustomerManagement.Droid</a></strong></td><td>Sample - CustomerManagement\CustomerManagement\CustomerManagement.Droid\CustomerManagement.Droid.csproj</td><td class="textCentered"><a href="#CustomerManagement.DroidError">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="#CustomerManagement.Touch">CustomerManagement.Touch</a></strong></td><td>Sample - CustomerManagement\CustomerManagement\CustomerManagement.Touch\CustomerManagement.Touch.csproj</td><td class="textCentered"><a href="#CustomerManagement.TouchError">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="#CustomerManagement.WindowsPhone">CustomerManagement.WindowsPhone</a></strong></td><td>Sample - CustomerManagement\CustomerManagement\CustomerManagement.WindowsPhone\CustomerManagement.WindowsPhone.csproj</td><td class="textCentered"><a href="#CustomerManagement.WindowsPhoneError">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="#DroidAutoComplete">DroidAutoComplete</a></strong></td><td>Sample - SimpleDialogBinding\DroidAutoComplete\DroidAutoComplete.csproj</td><td class="textCentered"><a href="#DroidAutoCompleteError">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="#SimpleBindingDialog">SimpleBindingDialog</a></strong></td><td>Sample - SimpleDialogBinding\SimpleBinding\SimpleBindingDialog\SimpleBindingDialog.csproj</td><td class="textCentered"><a href="#SimpleBindingDialogError">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="#SimpleDroid">SimpleDroid</a></strong></td><td>Sample - SimpleDialogBinding\SimpleDroid\SimpleDroid.csproj</td><td class="textCentered"><a href="#SimpleDroidError">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="#System.Net.Droid">System.Net.Droid</a></strong></td><td>Cirrious\System.Net\System.Net.Droid.csproj</td><td class="textCentered"><a href="#System.Net.DroidError">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="#System.Net.Touch">System.Net.Touch</a></strong></td><td>Cirrious\System.Net.Touch\System.Net.Touch.csproj</td><td class="textCentered"><a href="#System.Net.TouchError">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="#System.Windows.Droid">System.Windows.Droid</a></strong></td><td>Cirrious\System.Windows\System.Windows.Droid.csproj</td><td class="textCentered"><a href="#System.Windows.DroidError">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="#System.Windows.Touch">System.Windows.Touch</a></strong></td><td>Cirrious\System.Windows.Touch\System.Windows.Touch.csproj</td><td class="textCentered"><a href="#System.Windows.TouchError">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="#System.Xml.Serialization.Droid">System.Xml.Serialization.Droid</a></strong></td><td>Cirrious\System.Xml.Serialization.Droid\System.Xml.Serialization.Droid.csproj</td><td class="textCentered"><a href="#System.Xml.Serialization.DroidError">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="#Tutorial.UI.Droid">Tutorial.UI.Droid</a></strong></td><td>Sample - Tutorial\Tutorial\Tutorial.UI.Droid\Tutorial.UI.Droid.csproj</td><td class="textCentered"><a href="#Tutorial.UI.DroidError">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="#Tutorial.UI.Touch">Tutorial.UI.Touch</a></strong></td><td>Sample - Tutorial\Tutorial\Tutorial.UI.Touch\Tutorial.UI.Touch.csproj</td><td class="textCentered"><a href="#Tutorial.UI.TouchError">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="#Tutorial.UI.WindowsPhone">Tutorial.UI.WindowsPhone</a></strong></td><td>Sample - Tutorial\Tutorial\Tutorial.UI.WindowsPhone\Tutorial.UI.WindowsPhone.csproj</td><td class="textCentered"><a href="#Tutorial.UI.WindowsPhoneError">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="#TwitterSearch.UI.Droid">TwitterSearch.UI.Droid</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.UI.Droid\TwitterSearch.UI.Droid.csproj</td><td class="textCentered"><a href="#TwitterSearch.UI.DroidError">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="#TwitterSearch.UI.Touch">TwitterSearch.UI.Touch</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.UI.Touch\TwitterSearch.UI.Touch.csproj</td><td class="textCentered"><a href="#TwitterSearch.UI.TouchError">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="#TwitterSearch.UI.WP7">TwitterSearch.UI.WP7</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.UI.WP7\TwitterSearch.UI.WP7.csproj</td><td class="textCentered"><a href="#TwitterSearch.UI.WP7Error">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="#BestSellers">BestSellers</a></strong></td><td>BestSellers</td><td class="textCentered"><a>0</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="#Bookmarks">Bookmarks</a></strong></td><td>Bookmarks</td><td class="textCentered"><a>0</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="#Cirrious.Conference.Core">Cirrious.Conference.Core</a></strong></td><td>Sample - CirriousConference\Cirrious.Conference.Core\Cirrious.Conference.Core.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross">Cirrious.MvvmCross</a></strong></td><td>Cirrious\Cirrious.MvvmCross\Cirrious.MvvmCross.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Binding">Cirrious.MvvmCross.Binding</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Binding\Cirrious.MvvmCross.Binding.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Console">Cirrious.MvvmCross.Console</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Console\Cirrious.MvvmCross.Console.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Json">Cirrious.MvvmCross.Json</a></strong></td><td>Cirrious\Plugins\Json\Cirrious.MvvmCross.Plugins.Json\Cirrious.MvvmCross.Json.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Localization">Cirrious.MvvmCross.Localization</a></strong></td><td>Cirrious\Cirrious.MvvmCross.Localisation\Cirrious.MvvmCross.Localization.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.OpenNetCfIoC">Cirrious.MvvmCross.OpenNetCfIoC</a></strong></td><td>Cirrious\Cirrious.MvvmCross.OpenNetCFIoC\Cirrious.MvvmCross.OpenNetCfIoC.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Bookmarks">Cirrious.MvvmCross.Plugins.Bookmarks</a></strong></td><td>Cirrious\Plugins\Bookmarks\Cirrious.MvvmCross.Plugins.Bookmarks\Cirrious.MvvmCross.Plugins.Bookmarks.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Color">Cirrious.MvvmCross.Plugins.Color</a></strong></td><td>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color\Cirrious.MvvmCross.Plugins.Color.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.DownloadCache">Cirrious.MvvmCross.Plugins.DownloadCache</a></strong></td><td>Cirrious\Plugins\DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Email">Cirrious.MvvmCross.Plugins.Email</a></strong></td><td>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email\Cirrious.MvvmCross.Plugins.Email.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.File">Cirrious.MvvmCross.Plugins.File</a></strong></td><td>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File\Cirrious.MvvmCross.Plugins.File.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.File.WinRT">Cirrious.MvvmCross.Plugins.File.WinRT</a></strong></td><td>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.WinRT\Cirrious.MvvmCross.Plugins.File.WinRT.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.JsonLocalisation">Cirrious.MvvmCross.Plugins.JsonLocalisation</a></strong></td><td>Cirrious\Plugins\JsonLocalisation\Cirrious.MvvmCross.Plugins.JsonLocalisation\Cirrious.MvvmCross.Plugins.JsonLocalisation.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Location">Cirrious.MvvmCross.Plugins.Location</a></strong></td><td>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location\Cirrious.MvvmCross.Plugins.Location.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.PhoneCall">Cirrious.MvvmCross.Plugins.PhoneCall</a></strong></td><td>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.PictureChooser">Cirrious.MvvmCross.Plugins.PictureChooser</a></strong></td><td>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.ResourceLoader">Cirrious.MvvmCross.Plugins.ResourceLoader</a></strong></td><td>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT">Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT</a></strong></td><td>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT\Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Share">Cirrious.MvvmCross.Plugins.Share</a></strong></td><td>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share\Cirrious.MvvmCross.Plugins.Share.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.SoundEffects">Cirrious.MvvmCross.Plugins.SoundEffects</a></strong></td><td>Cirrious\Plugins\SoundEffects\Cirrious.MvvmCross.Plugins.SoundEffects\Cirrious.MvvmCross.Plugins.SoundEffects.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.ThreadUtils">Cirrious.MvvmCross.Plugins.ThreadUtils</a></strong></td><td>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Visibility">Cirrious.MvvmCross.Plugins.Visibility</a></strong></td><td>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility\Cirrious.MvvmCross.Plugins.Visibility.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.Visibility.Console">Cirrious.MvvmCross.Plugins.Visibility.Console</a></strong></td><td>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.Console\Cirrious.MvvmCross.Plugins.Visibility.Console.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.Plugins.WebBrowser">Cirrious.MvvmCross.Plugins.WebBrowser</a></strong></td><td>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.csproj</td><td class="textCentered"><a>0</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="#Cirrious.MvvmCross.WinRT">Cirrious.MvvmCross.WinRT</a></strong></td><td>Cirrious\Cirrious.MvvmCross.WinRT\Cirrious.MvvmCross.WinRT.csproj</td><td class="textCentered"><a>0</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="#Color">Color</a></strong></td><td>Color</td><td class="textCentered"><a>0</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="#Conference">Conference</a></strong></td><td>Conference</td><td class="textCentered"><a>0</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="#CustomerManagement">CustomerManagement</a></strong></td><td>CustomerManagement</td><td class="textCentered"><a>0</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="#CustomerManagement.Core">CustomerManagement.Core</a></strong></td><td>Sample - CustomerManagement\CustomerManagement\CustomerManagement\CustomerManagement.Core.csproj</td><td class="textCentered"><a>0</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="#DownloadCache">DownloadCache</a></strong></td><td>DownloadCache</td><td class="textCentered"><a>0</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="#Droid">Droid</a></strong></td><td>Droid</td><td class="textCentered"><a>0</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="#Email">Email</a></strong></td><td>Email</td><td class="textCentered"><a>0</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="#File">File</a></strong></td><td>File</td><td class="textCentered"><a>0</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="#JsonLocalisation">JsonLocalisation</a></strong></td><td>JsonLocalisation</td><td class="textCentered"><a>0</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="#Location">Location</a></strong></td><td>Location</td><td class="textCentered"><a>0</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="#MvvmCross">MvvmCross</a></strong></td><td>MvvmCross</td><td class="textCentered"><a>0</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="#PhoneCall">PhoneCall</a></strong></td><td>PhoneCall</td><td class="textCentered"><a>0</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="#PictureChooser">PictureChooser</a></strong></td><td>PictureChooser</td><td class="textCentered"><a>0</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="#Plugins">Plugins</a></strong></td><td>Plugins</td><td class="textCentered"><a>0</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="#ResourceLoader">ResourceLoader</a></strong></td><td>ResourceLoader</td><td class="textCentered"><a>0</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="#Samples">Samples</a></strong></td><td>Samples</td><td class="textCentered"><a>0</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="#Share">Share</a></strong></td><td>Share</td><td class="textCentered"><a>0</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="#Simple">Simple</a></strong></td><td>Simple</td><td class="textCentered"><a>0</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="#SoundEffects">SoundEffects</a></strong></td><td>SoundEffects</td><td class="textCentered"><a>0</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="#ThreadUtils">ThreadUtils</a></strong></td><td>ThreadUtils</td><td class="textCentered"><a>0</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="#Touch">Touch</a></strong></td><td>Touch</td><td class="textCentered"><a>0</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="#Tutorial">Tutorial</a></strong></td><td>Tutorial</td><td class="textCentered"><a>0</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="#Tutorial.Core">Tutorial.Core</a></strong></td><td>Sample - Tutorial\Tutorial\Tutorial.Core\Tutorial.Core.csproj</td><td class="textCentered"><a>0</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="#Tutorial.UI.WinRT">Tutorial.UI.WinRT</a></strong></td><td>Sample - Tutorial\Tutorial\Tutorial.UI.WinRT\Tutorial.UI.WinRT.csproj</td><td class="textCentered"><a>0</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="#TwitterSearch">TwitterSearch</a></strong></td><td>TwitterSearch</td><td class="textCentered"><a>0</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="#TwitterSearch.Core">TwitterSearch.Core</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.Core\TwitterSearch.Core.csproj</td><td class="textCentered"><a>0</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="#TwitterSearch.UI.Console">TwitterSearch.UI.Console</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.UI.Console\TwitterSearch.UI.Console.csproj</td><td class="textCentered"><a>0</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="#TwitterSearch.UI.WinRT">TwitterSearch.UI.WinRT</a></strong></td><td>Sample - TwitterSearch\TwitterSearch.UI.WinRT\TwitterSearch.UI.WinRT.csproj</td><td class="textCentered"><a>0</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="#Visibility">Visibility</a></strong></td><td>Visibility</td><td class="textCentered"><a>0</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="#WebBrowser">WebBrowser</a></strong></td><td>WebBrowser</td><td class="textCentered"><a>0</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>MvvmCross_All.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="BestSellers.Droid" /><h3>BestSellers.Droid</h3><table><tr id="BestSellers.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassBestSellers.Droid"><td><a name="BestSellers.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - BestSellers\BestSellers\BestSellers.Droid\BestSellers.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="BestSellers.Touch" /><h3>BestSellers.Touch</h3><table><tr id="BestSellers.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassBestSellers.Touch"><td><a name="BestSellers.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - BestSellers\BestSellers\BestSellers.Touch\BestSellers.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="BestSellers.WindowsPhone" /><h3>BestSellers.WindowsPhone</h3><table><tr id="BestSellers.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassBestSellers.WindowsPhone"><td><a name="BestSellers.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - BestSellers\BestSellers\BestSellers.WindowsPhone\BestSellers.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.Conference.UI.Droid" /><h3>Cirrious.Conference.UI.Droid</h3><table><tr id="Cirrious.Conference.UI.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.Conference.UI.Droid"><td><a name="Cirrious.Conference.UI.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CirriousConference\Cirrious.Conference.UI.Droid\Cirrious.Conference.UI.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.Conference.UI.Touch" /><h3>Cirrious.Conference.UI.Touch</h3><table><tr id="Cirrious.Conference.UI.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.Conference.UI.Touch"><td><a name="Cirrious.Conference.UI.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CirriousConference\Cirrious.Conference.UI.Touch\Cirrious.Conference.UI.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.Conference.UI.WP7" /><h3>Cirrious.Conference.UI.WP7</h3><table><tr id="Cirrious.Conference.UI.WP7HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.Conference.UI.WP7"><td><a name="Cirrious.Conference.UI.WP7Error" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CirriousConference\Cirrious.Conference.UI.WP7\Cirrious.Conference.UI.WP7.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Binding.Droid" /><h3>Cirrious.MvvmCross.Binding.Droid</h3><table><tr id="Cirrious.MvvmCross.Binding.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Binding.Droid"><td><a name="Cirrious.MvvmCross.Binding.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Binding.Droid\Cirrious.MvvmCross.Binding.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Binding.Touch" /><h3>Cirrious.MvvmCross.Binding.Touch</h3><table><tr id="Cirrious.MvvmCross.Binding.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Binding.Touch"><td><a name="Cirrious.MvvmCross.Binding.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Binding.Touch\Cirrious.MvvmCross.Binding.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Dialog.Touch" /><h3>Cirrious.MvvmCross.Dialog.Touch</h3><table><tr id="Cirrious.MvvmCross.Dialog.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Dialog.Touch"><td><a name="Cirrious.MvvmCross.Dialog.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Dialog.Touch\Cirrious.MvvmCross.Dialog.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Droid" /><h3>Cirrious.MvvmCross.Droid</h3><table><tr id="Cirrious.MvvmCross.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Droid"><td><a name="Cirrious.MvvmCross.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Droid\Cirrious.MvvmCross.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Droid.Maps" /><h3>Cirrious.MvvmCross.Droid.Maps</h3><table><tr id="Cirrious.MvvmCross.Droid.MapsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Droid.Maps"><td><a name="Cirrious.MvvmCross.Droid.MapsError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Droid.Maps\Cirrious.MvvmCross.Droid.Maps.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Bookmarks\Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone\Cirrious.MvvmCross.Plugins.Bookmarks.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Color.Droid" /><h3>Cirrious.MvvmCross.Plugins.Color.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.Color.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Color.Droid"><td><a name="Cirrious.MvvmCross.Plugins.Color.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.Droid\Cirrious.MvvmCross.Plugins.Color.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Color.Touch" /><h3>Cirrious.MvvmCross.Plugins.Color.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.Color.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Color.Touch"><td><a name="Cirrious.MvvmCross.Plugins.Color.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.Touch\Cirrious.MvvmCross.Plugins.Color.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Color.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Color.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Color.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Color.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Color.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Color\Cirrious.MvvmCross.Plugins.Color.WindowsPhone\Cirrious.MvvmCross.Plugins.Color.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.DownloadCache.Droid" /><h3>Cirrious.MvvmCross.Plugins.DownloadCache.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.DownloadCache.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.DownloadCache.Droid"><td><a name="Cirrious.MvvmCross.Plugins.DownloadCache.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache.Droid\Cirrious.MvvmCross.Plugins.DownloadCache.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.DownloadCache.Touch" /><h3>Cirrious.MvvmCross.Plugins.DownloadCache.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.DownloadCache.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.DownloadCache.Touch"><td><a name="Cirrious.MvvmCross.Plugins.DownloadCache.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\DownloadCache\Cirrious.MvvmCross.Plugins.DownloadCache.Touch\Cirrious.MvvmCross.Plugins.DownloadCache.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Email.Droid" /><h3>Cirrious.MvvmCross.Plugins.Email.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.Email.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Email.Droid"><td><a name="Cirrious.MvvmCross.Plugins.Email.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.Droid\Cirrious.MvvmCross.Plugins.Email.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Email.Touch" /><h3>Cirrious.MvvmCross.Plugins.Email.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.Email.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Email.Touch"><td><a name="Cirrious.MvvmCross.Plugins.Email.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.Touch\Cirrious.MvvmCross.Plugins.Email.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Email.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Email.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Email.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Email.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Email.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Email\Cirrious.MvvmCross.Plugins.Email.WindowsPhone\Cirrious.MvvmCross.Plugins.Email.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.File.Droid" /><h3>Cirrious.MvvmCross.Plugins.File.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.File.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.File.Droid"><td><a name="Cirrious.MvvmCross.Plugins.File.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.Droid\Cirrious.MvvmCross.Plugins.File.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.File.Touch" /><h3>Cirrious.MvvmCross.Plugins.File.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.File.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.File.Touch"><td><a name="Cirrious.MvvmCross.Plugins.File.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.Touch\Cirrious.MvvmCross.Plugins.File.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.File.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.File.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.File.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.File.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.File.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\File\Cirrious.MvvmCross.Plugins.File.WindowsPhone\Cirrious.MvvmCross.Plugins.File.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Location.Droid" /><h3>Cirrious.MvvmCross.Plugins.Location.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.Location.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Location.Droid"><td><a name="Cirrious.MvvmCross.Plugins.Location.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.Droid\Cirrious.MvvmCross.Plugins.Location.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Location.Touch" /><h3>Cirrious.MvvmCross.Plugins.Location.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.Location.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Location.Touch"><td><a name="Cirrious.MvvmCross.Plugins.Location.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.Touch\Cirrious.MvvmCross.Plugins.Location.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Location.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Location.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Location.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Location.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Location.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Location\Cirrious.MvvmCross.Plugins.Location.WindowsPhone\Cirrious.MvvmCross.Plugins.Location.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PhoneCall.Droid" /><h3>Cirrious.MvvmCross.Plugins.PhoneCall.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.PhoneCall.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PhoneCall.Droid"><td><a name="Cirrious.MvvmCross.Plugins.PhoneCall.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.Droid\Cirrious.MvvmCross.Plugins.PhoneCall.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PhoneCall.Touch" /><h3>Cirrious.MvvmCross.Plugins.PhoneCall.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.PhoneCall.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PhoneCall.Touch"><td><a name="Cirrious.MvvmCross.Plugins.PhoneCall.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.Touch\Cirrious.MvvmCross.Plugins.PhoneCall.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PhoneCall\Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone\Cirrious.MvvmCross.Plugins.PhoneCall.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PictureChooser.Droid" /><h3>Cirrious.MvvmCross.Plugins.PictureChooser.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.PictureChooser.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PictureChooser.Droid"><td><a name="Cirrious.MvvmCross.Plugins.PictureChooser.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.Droid\Cirrious.MvvmCross.Plugins.PictureChooser.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PictureChooser.Touch" /><h3>Cirrious.MvvmCross.Plugins.PictureChooser.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.PictureChooser.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PictureChooser.Touch"><td><a name="Cirrious.MvvmCross.Plugins.PictureChooser.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.Touch\Cirrious.MvvmCross.Plugins.PictureChooser.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\PictureChooser\Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone\Cirrious.MvvmCross.Plugins.PictureChooser.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.Droid" /><h3>Cirrious.MvvmCross.Plugins.ResourceLoader.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.ResourceLoader.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ResourceLoader.Droid"><td><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.Droid\Cirrious.MvvmCross.Plugins.ResourceLoader.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.Touch" /><h3>Cirrious.MvvmCross.Plugins.ResourceLoader.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.ResourceLoader.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ResourceLoader.Touch"><td><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.Touch\Cirrious.MvvmCross.Plugins.ResourceLoader.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ResourceLoader\Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone\Cirrious.MvvmCross.Plugins.ResourceLoader.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Share.Droid" /><h3>Cirrious.MvvmCross.Plugins.Share.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.Share.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Share.Droid"><td><a name="Cirrious.MvvmCross.Plugins.Share.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.Droid\Cirrious.MvvmCross.Plugins.Share.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Share.Touch" /><h3>Cirrious.MvvmCross.Plugins.Share.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.Share.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Share.Touch"><td><a name="Cirrious.MvvmCross.Plugins.Share.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.Touch\Cirrious.MvvmCross.Plugins.Share.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Share.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Share.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Share.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Share.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Share.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Share\Cirrious.MvvmCross.Plugins.Share.WindowsPhone\Cirrious.MvvmCross.Plugins.Share.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\SoundEffects\Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone\Cirrious.MvvmCross.Plugins.SoundEffects.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.Droid" /><h3>Cirrious.MvvmCross.Plugins.ThreadUtils.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.ThreadUtils.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ThreadUtils.Droid"><td><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.Droid\Cirrious.MvvmCross.Plugins.ThreadUtils.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.Touch" /><h3>Cirrious.MvvmCross.Plugins.ThreadUtils.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.ThreadUtils.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ThreadUtils.Touch"><td><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.Touch\Cirrious.MvvmCross.Plugins.ThreadUtils.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\ThreadUtils\Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone\Cirrious.MvvmCross.Plugins.ThreadUtils.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Visibility.Droid" /><h3>Cirrious.MvvmCross.Plugins.Visibility.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.Visibility.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Visibility.Droid"><td><a name="Cirrious.MvvmCross.Plugins.Visibility.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.Droid\Cirrious.MvvmCross.Plugins.Visibility.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Visibility.Touch" /><h3>Cirrious.MvvmCross.Plugins.Visibility.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.Visibility.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Visibility.Touch"><td><a name="Cirrious.MvvmCross.Plugins.Visibility.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.Touch\Cirrious.MvvmCross.Plugins.Visibility.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.Visibility.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.Visibility.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.Visibility.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\Visibility\Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone\Cirrious.MvvmCross.Plugins.Visibility.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.WebBrowser.Droid" /><h3>Cirrious.MvvmCross.Plugins.WebBrowser.Droid</h3><table><tr id="Cirrious.MvvmCross.Plugins.WebBrowser.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.WebBrowser.Droid"><td><a name="Cirrious.MvvmCross.Plugins.WebBrowser.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.Droid\Cirrious.MvvmCross.Plugins.WebBrowser.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.WebBrowser.Touch" /><h3>Cirrious.MvvmCross.Plugins.WebBrowser.Touch</h3><table><tr id="Cirrious.MvvmCross.Plugins.WebBrowser.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.WebBrowser.Touch"><td><a name="Cirrious.MvvmCross.Plugins.WebBrowser.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.Touch\Cirrious.MvvmCross.Plugins.WebBrowser.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone" /><h3>Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone"><td><a name="Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Plugins\WebBrowser\Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone\Cirrious.MvvmCross.Plugins.WebBrowser.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="Cirrious.MvvmCross.Touch" /><h3>Cirrious.MvvmCross.Touch</h3><table><tr id="Cirrious.MvvmCross.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.Touch"><td><a name="Cirrious.MvvmCross.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.Touch\Cirrious.MvvmCross.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Cirrious.MvvmCross.WindowsPhone" /><h3>Cirrious.MvvmCross.WindowsPhone</h3><table><tr id="Cirrious.MvvmCross.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCirrious.MvvmCross.WindowsPhone"><td><a name="Cirrious.MvvmCross.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\Cirrious.MvvmCross.WindowsPhone\Cirrious.MvvmCross.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="CustomerManagement.Droid" /><h3>CustomerManagement.Droid</h3><table><tr id="CustomerManagement.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCustomerManagement.Droid"><td><a name="CustomerManagement.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CustomerManagement\CustomerManagement\CustomerManagement.Droid\CustomerManagement.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="CustomerManagement.Touch" /><h3>CustomerManagement.Touch</h3><table><tr id="CustomerManagement.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCustomerManagement.Touch"><td><a name="CustomerManagement.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CustomerManagement\CustomerManagement\CustomerManagement.Touch\CustomerManagement.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="CustomerManagement.WindowsPhone" /><h3>CustomerManagement.WindowsPhone</h3><table><tr id="CustomerManagement.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassCustomerManagement.WindowsPhone"><td><a name="CustomerManagement.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - CustomerManagement\CustomerManagement\CustomerManagement.WindowsPhone\CustomerManagement.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="DroidAutoComplete" /><h3>DroidAutoComplete</h3><table><tr id="DroidAutoCompleteHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassDroidAutoComplete"><td><a name="DroidAutoCompleteError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - SimpleDialogBinding\DroidAutoComplete\DroidAutoComplete.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="SimpleBindingDialog" /><h3>SimpleBindingDialog</h3><table><tr id="SimpleBindingDialogHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSimpleBindingDialog"><td><a name="SimpleBindingDialogError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - SimpleDialogBinding\SimpleBinding\SimpleBindingDialog\SimpleBindingDialog.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="SimpleDroid" /><h3>SimpleDroid</h3><table><tr id="SimpleDroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSimpleDroid"><td><a name="SimpleDroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - SimpleDialogBinding\SimpleDroid\SimpleDroid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="System.Net.Droid" /><h3>System.Net.Droid</h3><table><tr id="System.Net.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSystem.Net.Droid"><td><a name="System.Net.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\System.Net\System.Net.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="System.Net.Touch" /><h3>System.Net.Touch</h3><table><tr id="System.Net.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSystem.Net.Touch"><td><a name="System.Net.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\System.Net.Touch\System.Net.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="System.Windows.Droid" /><h3>System.Windows.Droid</h3><table><tr id="System.Windows.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSystem.Windows.Droid"><td><a name="System.Windows.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\System.Windows\System.Windows.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="System.Windows.Touch" /><h3>System.Windows.Touch</h3><table><tr id="System.Windows.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSystem.Windows.Touch"><td><a name="System.Windows.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\System.Windows.Touch\System.Windows.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="System.Xml.Serialization.Droid" /><h3>System.Xml.Serialization.Droid</h3><table><tr id="System.Xml.Serialization.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassSystem.Xml.Serialization.Droid"><td><a name="System.Xml.Serialization.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Cirrious\System.Xml.Serialization.Droid\System.Xml.Serialization.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Tutorial.UI.Droid" /><h3>Tutorial.UI.Droid</h3><table><tr id="Tutorial.UI.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTutorial.UI.Droid"><td><a name="Tutorial.UI.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - Tutorial\Tutorial\Tutorial.UI.Droid\Tutorial.UI.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="Tutorial.UI.Touch" /><h3>Tutorial.UI.Touch</h3><table><tr id="Tutorial.UI.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTutorial.UI.Touch"><td><a name="Tutorial.UI.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - Tutorial\Tutorial\Tutorial.UI.Touch\Tutorial.UI.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="Tutorial.UI.WindowsPhone" /><h3>Tutorial.UI.WindowsPhone</h3><table><tr id="Tutorial.UI.WindowsPhoneHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTutorial.UI.WindowsPhone"><td><a name="Tutorial.UI.WindowsPhoneError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - Tutorial\Tutorial\Tutorial.UI.WindowsPhone\Tutorial.UI.WindowsPhone.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="TwitterSearch.UI.Droid" /><h3>TwitterSearch.UI.Droid</h3><table><tr id="TwitterSearch.UI.DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTwitterSearch.UI.Droid"><td><a name="TwitterSearch.UI.DroidError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - TwitterSearch\TwitterSearch.UI.Droid\TwitterSearch.UI.Droid.csproj:
</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=EFBA0AD7-5A72-4C68-AF49-83D382785DCF</span></td></tr></table><a name="TwitterSearch.UI.Touch" /><h3>TwitterSearch.UI.Touch</h3><table><tr id="TwitterSearch.UI.TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTwitterSearch.UI.Touch"><td><a name="TwitterSearch.UI.TouchError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - TwitterSearch\TwitterSearch.UI.Touch\TwitterSearch.UI.Touch.csproj:
</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=6BC8ED88-2882-458C-8E55-DFD12B67127B</span></td></tr></table><a name="TwitterSearch.UI.WP7" /><h3>TwitterSearch.UI.WP7</h3><table><tr id="TwitterSearch.UI.WP7HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClassTwitterSearch.UI.WP7"><td><a name="TwitterSearch.UI.WP7Error" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>Sample - TwitterSearch\TwitterSearch.UI.WP7\TwitterSearch.UI.WP7.csproj:
</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=C089C8C0-30E0-4E22-80C0-CE093F111A43</span></td></tr></table><a name="BestSellers" /><h3>BestSellers</h3><table><tr id="BestSellersHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">BestSellers logged no messages.
</td></tr></table><a name="Bookmarks" /><h3>Bookmarks</h3><table><tr id="BookmarksHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Bookmarks logged no messages.
</td></tr></table><a name="Cirrious.Conference.Core" /><h3>Cirrious.Conference.Core</h3><table><tr id="Cirrious.Conference.CoreHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.Conference.Core logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross" /><h3>Cirrious.MvvmCross</h3><table><tr id="Cirrious.MvvmCrossHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Binding" /><h3>Cirrious.MvvmCross.Binding</h3><table><tr id="Cirrious.MvvmCross.BindingHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Binding logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Console" /><h3>Cirrious.MvvmCross.Console</h3><table><tr id="Cirrious.MvvmCross.ConsoleHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Console logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Json" /><h3>Cirrious.MvvmCross.Json</h3><table><tr id="Cirrious.MvvmCross.JsonHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Json logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Localization" /><h3>Cirrious.MvvmCross.Localization</h3><table><tr id="Cirrious.MvvmCross.LocalizationHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Localization logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.OpenNetCfIoC" /><h3>Cirrious.MvvmCross.OpenNetCfIoC</h3><table><tr id="Cirrious.MvvmCross.OpenNetCfIoCHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.OpenNetCfIoC logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Bookmarks" /><h3>Cirrious.MvvmCross.Plugins.Bookmarks</h3><table><tr id="Cirrious.MvvmCross.Plugins.BookmarksHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Bookmarks logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Color" /><h3>Cirrious.MvvmCross.Plugins.Color</h3><table><tr id="Cirrious.MvvmCross.Plugins.ColorHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Color logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.DownloadCache" /><h3>Cirrious.MvvmCross.Plugins.DownloadCache</h3><table><tr id="Cirrious.MvvmCross.Plugins.DownloadCacheHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.DownloadCache logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Email" /><h3>Cirrious.MvvmCross.Plugins.Email</h3><table><tr id="Cirrious.MvvmCross.Plugins.EmailHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Email logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.File" /><h3>Cirrious.MvvmCross.Plugins.File</h3><table><tr id="Cirrious.MvvmCross.Plugins.FileHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.File logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.File.WinRT" /><h3>Cirrious.MvvmCross.Plugins.File.WinRT</h3><table><tr id="Cirrious.MvvmCross.Plugins.File.WinRTHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.File.WinRT logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.JsonLocalisation" /><h3>Cirrious.MvvmCross.Plugins.JsonLocalisation</h3><table><tr id="Cirrious.MvvmCross.Plugins.JsonLocalisationHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.JsonLocalisation logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Location" /><h3>Cirrious.MvvmCross.Plugins.Location</h3><table><tr id="Cirrious.MvvmCross.Plugins.LocationHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Location logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.PhoneCall" /><h3>Cirrious.MvvmCross.Plugins.PhoneCall</h3><table><tr id="Cirrious.MvvmCross.Plugins.PhoneCallHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.PhoneCall logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.PictureChooser" /><h3>Cirrious.MvvmCross.Plugins.PictureChooser</h3><table><tr id="Cirrious.MvvmCross.Plugins.PictureChooserHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.PictureChooser logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.ResourceLoader" /><h3>Cirrious.MvvmCross.Plugins.ResourceLoader</h3><table><tr id="Cirrious.MvvmCross.Plugins.ResourceLoaderHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.ResourceLoader logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT" /><h3>Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT</h3><table><tr id="Cirrious.MvvmCross.Plugins.ResourceLoader.WinRTHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.ResourceLoader.WinRT logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Share" /><h3>Cirrious.MvvmCross.Plugins.Share</h3><table><tr id="Cirrious.MvvmCross.Plugins.ShareHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Share logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.SoundEffects" /><h3>Cirrious.MvvmCross.Plugins.SoundEffects</h3><table><tr id="Cirrious.MvvmCross.Plugins.SoundEffectsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.SoundEffects logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.ThreadUtils" /><h3>Cirrious.MvvmCross.Plugins.ThreadUtils</h3><table><tr id="Cirrious.MvvmCross.Plugins.ThreadUtilsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.ThreadUtils logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Visibility" /><h3>Cirrious.MvvmCross.Plugins.Visibility</h3><table><tr id="Cirrious.MvvmCross.Plugins.VisibilityHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Visibility logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.Visibility.Console" /><h3>Cirrious.MvvmCross.Plugins.Visibility.Console</h3><table><tr id="Cirrious.MvvmCross.Plugins.Visibility.ConsoleHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.Visibility.Console logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.Plugins.WebBrowser" /><h3>Cirrious.MvvmCross.Plugins.WebBrowser</h3><table><tr id="Cirrious.MvvmCross.Plugins.WebBrowserHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.Plugins.WebBrowser logged no messages.
</td></tr></table><a name="Cirrious.MvvmCross.WinRT" /><h3>Cirrious.MvvmCross.WinRT</h3><table><tr id="Cirrious.MvvmCross.WinRTHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Cirrious.MvvmCross.WinRT logged no messages.
</td></tr></table><a name="Color" /><h3>Color</h3><table><tr id="ColorHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Color logged no messages.
</td></tr></table><a name="Conference" /><h3>Conference</h3><table><tr id="ConferenceHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Conference logged no messages.
</td></tr></table><a name="CustomerManagement" /><h3>CustomerManagement</h3><table><tr id="CustomerManagementHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">CustomerManagement logged no messages.
</td></tr></table><a name="CustomerManagement.Core" /><h3>CustomerManagement.Core</h3><table><tr id="CustomerManagement.CoreHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">CustomerManagement.Core logged no messages.
</td></tr></table><a name="DownloadCache" /><h3>DownloadCache</h3><table><tr id="DownloadCacheHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">DownloadCache logged no messages.
</td></tr></table><a name="Droid" /><h3>Droid</h3><table><tr id="DroidHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Droid logged no messages.
</td></tr></table><a name="Email" /><h3>Email</h3><table><tr id="EmailHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Email logged no messages.
</td></tr></table><a name="File" /><h3>File</h3><table><tr id="FileHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">File logged no messages.
</td></tr></table><a name="JsonLocalisation" /><h3>JsonLocalisation</h3><table><tr id="JsonLocalisationHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">JsonLocalisation logged no messages.
</td></tr></table><a name="Location" /><h3>Location</h3><table><tr id="LocationHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Location logged no messages.
</td></tr></table><a name="MvvmCross" /><h3>MvvmCross</h3><table><tr id="MvvmCrossHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">MvvmCross logged no messages.
</td></tr></table><a name="PhoneCall" /><h3>PhoneCall</h3><table><tr id="PhoneCallHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">PhoneCall logged no messages.
</td></tr></table><a name="PictureChooser" /><h3>PictureChooser</h3><table><tr id="PictureChooserHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">PictureChooser logged no messages.
</td></tr></table><a name="Plugins" /><h3>Plugins</h3><table><tr id="PluginsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Plugins logged no messages.
</td></tr></table><a name="ResourceLoader" /><h3>ResourceLoader</h3><table><tr id="ResourceLoaderHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">ResourceLoader logged no messages.
</td></tr></table><a name="Samples" /><h3>Samples</h3><table><tr id="SamplesHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Samples logged no messages.
</td></tr></table><a name="Share" /><h3>Share</h3><table><tr id="ShareHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Share logged no messages.
</td></tr></table><a name="Simple" /><h3>Simple</h3><table><tr id="SimpleHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Simple logged no messages.
</td></tr></table><a name="SoundEffects" /><h3>SoundEffects</h3><table><tr id="SoundEffectsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">SoundEffects logged no messages.
</td></tr></table><a name="ThreadUtils" /><h3>ThreadUtils</h3><table><tr id="ThreadUtilsHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">ThreadUtils logged no messages.
</td></tr></table><a name="Touch" /><h3>Touch</h3><table><tr id="TouchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Touch logged no messages.
</td></tr></table><a name="Tutorial" /><h3>Tutorial</h3><table><tr id="TutorialHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Tutorial logged no messages.
</td></tr></table><a name="Tutorial.Core" /><h3>Tutorial.Core</h3><table><tr id="Tutorial.CoreHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Tutorial.Core logged no messages.
</td></tr></table><a name="Tutorial.UI.WinRT" /><h3>Tutorial.UI.WinRT</h3><table><tr id="Tutorial.UI.WinRTHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Tutorial.UI.WinRT logged no messages.
</td></tr></table><a name="TwitterSearch" /><h3>TwitterSearch</h3><table><tr id="TwitterSearchHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">TwitterSearch logged no messages.
</td></tr></table><a name="TwitterSearch.Core" /><h3>TwitterSearch.Core</h3><table><tr id="TwitterSearch.CoreHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">TwitterSearch.Core logged no messages.
</td></tr></table><a name="TwitterSearch.UI.Console" /><h3>TwitterSearch.UI.Console</h3><table><tr id="TwitterSearch.UI.ConsoleHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">TwitterSearch.UI.Console logged no messages.
</td></tr></table><a name="TwitterSearch.UI.WinRT" /><h3>TwitterSearch.UI.WinRT</h3><table><tr id="TwitterSearch.UI.WinRTHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">TwitterSearch.UI.WinRT logged no messages.
</td></tr></table><a name="Visibility" /><h3>Visibility</h3><table><tr id="VisibilityHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">Visibility logged no messages.
</td></tr></table><a name="WebBrowser" /><h3>WebBrowser</h3><table><tr id="WebBrowserHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell" _locID="NoMessagesRow">WebBrowser logged no messages.
</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;">
Show 1 additional messages
</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>MvvmCross_All.sln:
</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;">
Hide 1 additional messages
</a></td></tr></table></div></div></body></html>