<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Sample Operations Dashboard Widget Problem in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/sample-operations-dashboard-widget-problem/m-p/386841#M2498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;Hi everyone,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;Here is a wired problem on compiling widgets on Operations Dashboard:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;We installed Dashboard 10.2.3, ArcGIS Runtime SDK for WPF 10.2.3 and Visual Studio 2013. When we tried to compile a sample widget -- WeatherUndergroundWidgetCS -- from arcgis online, we got error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;"The Esri WPF SDK is not correctly installed - ESRI.ArcGIS.OperationsDashboard.targets not WeatherUndergroundWidgetCS.csproj found (IDEIntegrationFolder='')."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Does anyone have any ideas about this problem? Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2014 17:57:29 GMT</pubDate>
    <dc:creator>ChenJiang1</dc:creator>
    <dc:date>2014-08-12T17:57:29Z</dc:date>
    <item>
      <title>Sample Operations Dashboard Widget Problem</title>
      <link>https://community.esri.com/t5/developers-questions/sample-operations-dashboard-widget-problem/m-p/386841#M2498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;Hi everyone,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;Here is a wired problem on compiling widgets on Operations Dashboard:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;We installed Dashboard 10.2.3, ArcGIS Runtime SDK for WPF 10.2.3 and Visual Studio 2013. When we tried to compile a sample widget -- WeatherUndergroundWidgetCS -- from arcgis online, we got error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; font-size: 12pt;"&gt;"The Esri WPF SDK is not correctly installed - ESRI.ArcGIS.OperationsDashboard.targets not WeatherUndergroundWidgetCS.csproj found (IDEIntegrationFolder='')."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Does anyone have any ideas about this problem? Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2014 17:57:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/sample-operations-dashboard-widget-problem/m-p/386841#M2498</guid>
      <dc:creator>ChenJiang1</dc:creator>
      <dc:date>2014-08-12T17:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Operations Dashboard Widget Problem</title>
      <link>https://community.esri.com/t5/developers-questions/sample-operations-dashboard-widget-problem/m-p/386842#M2499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiang, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This problem typically happens when an addin built from an older version of the WPF SDK is opened in a machine with a newer version of the SDK. You can try to fix the csproj file and update the reference dll to work around the porblem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Update the csproj file:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Open the WeatherUndergroundWidgetCS project your downloaded in Visual Studio&lt;/P&gt;&lt;P&gt;2. On Solution Explorer, right click on the project (not the solution), click Unload Project&lt;/P&gt;&lt;P&gt;3. The project name becomes WeatherUndergroundWidgetCS (unavailable), right click on it again then click Edit WeatherUndergroundWidgetCS.csproj&lt;/P&gt;&lt;P&gt;4. The .csproj file opens as plain xml text. Then look up for the &amp;lt;ReferenceFolder32&amp;gt;, &amp;lt;ReferenceFolder64&amp;gt;, &amp;lt;IDEIntegrationFolder32&amp;gt; and &amp;lt;IDEIntegrationFolder64&amp;gt; tags. In each of them you will see a piece of text like "ArcGISRuntimeWPF10.1.1@InstallDir". Replace the version number (e.g. 10.1.1) to your SDK's version (10.2.3)&lt;/P&gt;&lt;P&gt;5. When 4 places above have been updated and saved, right click on WeatherUndergroundWidgetCS (unavailable), click Reload Project&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Update the reference dll:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;6. When the project is reloaded, open "References" to see its reference dlls&lt;/P&gt;&lt;P&gt;7. Remove ESRI.ArcGIS.OperationsDashboard.dll (which should appear broken)&lt;/P&gt;&lt;P&gt;8. Add the dll back from the Ops Dashboard bin folder that comes with the SDK, typically it resides in:&lt;/P&gt;&lt;P&gt;c:\Program Files (x86)\ArcGIS SDKs\WPF10.2.3\sdk\OperationsDashboard\ESRI.ArcGIS.OperationsDashboard.dll&lt;/P&gt;&lt;P&gt;9. Set the Copy Local property of the dll above to False&lt;/P&gt;&lt;P&gt;10. Rebuild the project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if that helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2014 18:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/sample-operations-dashboard-widget-problem/m-p/386842#M2499</guid>
      <dc:creator>TifPun</dc:creator>
      <dc:date>2014-10-01T18:48:52Z</dc:date>
    </item>
  </channel>
</rss>

