2011-12-05 65 views
3

ReSharper的6.1(如並列到Visual Studio本身)告訴我有我的WCF工作流XAML文件錯誤。無法解析符號「點」,「大小」,「PointCollection」

  • 無法解析符號「點」
  • 無法解析符號「尺寸」
  • 無法解析符號「PointCollection」

雖然它編譯沒有任何問題,似乎工作,我想追查錯誤的原因。 StyleCop顯然知道(或者認爲它知道)Visual Studio沒有的東西。

這是代碼的給我錯誤的例子:

  <sap:WorkflowViewStateService.ViewState> 
       <scg3:Dictionary x:TypeArguments="x:String, x:Object"> 
       <av:Point x:Key="ShapeLocation">179,251</av:Point> 
       <av:Size x:Key="ShapeSize">242,58</av:Size> 
       <av:PointCollection x:Key="ConnectorLocation">300,309 300,339 270,339 270,441 300,441</av:PointCollection> 
       </scg3:Dictionary> 
      </sap:WorkflowViewStateService.ViewState> 

而這些命名空間聲明:

<Activity 
    mc:Ignorable="sap" 
    x:Class="Hydra.Sales.Workflows.CreateCustomer" 
    xmlns="http://schemas.microsoft.com/netfx/2009/xaml/activities" 
    xmlns:av="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:hcid="clrnamespace:Hydra.Common.Infrastructure.DataContracts;assembly=Hydra.Common.Infrastructure" 
    xmlns:local="clr-namespace:Hydra.Sales.Activities.Associations" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    xmlns:mv="clrnamespace:Microsoft.VisualBasic;assembly=System" 
    xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities" 
    xmlns:s="clr-namespace:System;assembly=mscorlib" 
    xmlns:s1="clr-namespace:System;assembly=System" 
    xmlns:s2="clr-namespace:System;assembly=System.Xml" 
    xmlns:s3="clr-namespace:System;assembly=System.Core" 
    xmlns:s4="clr-namespace:System;assembly=System.ServiceModel" 
    xmlns:sa="clr-namespace:System.Activities;assembly=System.Activities" 
    xmlns:sad="clr-namespace:System.Activities.Debugger;assembly=System.Activities" 
    xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" 
    xmlns:scg="clr-namespace:System.Collections.Generic;assembly=System" 
    xmlns:scg1="clr-namespace:System.Collections.Generic;assembly=System.ServiceModel" 
    xmlns:scg2="clr-namespace:System.Collections.Generic;assembly=System.Core" 
    xmlns:scg3="clr-namespace:System.Collections.Generic;assembly=mscorlib" 
    xmlns:sd="clr-namespace:System.Data;assembly=System.Data" 
    mlns:sl="clr-namespace:System.Linq;assembly=System.Core" 
    xmlns:st="clr-namespace:System.Text;assembly=mscorlib" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> 

該項目具有參考(其中包括):

  • System System.Activities
  • System.Code
  • System.Xaml
  • System.Xml

添加到WindowsBase參考減少了錯誤列表下降到Cannot resolve symbol 'PointCollection',但我不相信這是正確的解決方案。

+0

錯誤報告是在這裏:http://youtrack.jetbrains.com/issue/RSRP-305121 – Christian

回答

4

的WorkflowViewStateService.ViewState類型是來自System.Activities.Presentation一個設計時間僞影。它在運行時對工作流沒有影響。實際上,我們有一個示例顯示如何刪除它。您可以安全地忽略這些Resharper錯誤。

Removing the View State the Designer Adds to an XAML File