ivr流程编辑器

FlowEditor.csproj 3.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{51599AF2-0C6D-46FF-8694-A4E80952E2AC}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>HySoft.FlowEditor</RootNamespace>
  12. <AssemblyName>FlowEditor</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  15. <FileAlignment>512</FileAlignment>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Xml.Linq" />
  38. <Reference Include="System.Data.DataSetExtensions" />
  39. <Reference Include="Microsoft.CSharp" />
  40. <Reference Include="System.Data" />
  41. <Reference Include="System.Drawing" />
  42. <Reference Include="System.Windows.Forms" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="FlowBrokenLineControl.cs">
  47. <SubType>UserControl</SubType>
  48. </Compile>
  49. <Compile Include="FlowBrokenLineControl.Designer.cs">
  50. <DependentUpon>FlowBrokenLineControl.cs</DependentUpon>
  51. </Compile>
  52. <Compile Include="FlowEditor.cs" />
  53. <Compile Include="FlowEditorCanvas.cs">
  54. <SubType>UserControl</SubType>
  55. </Compile>
  56. <Compile Include="FlowEditorCanvas.Designer.cs">
  57. <DependentUpon>FlowEditorCanvas.cs</DependentUpon>
  58. </Compile>
  59. <Compile Include="FlowNodeControl.cs">
  60. <SubType>UserControl</SubType>
  61. </Compile>
  62. <Compile Include="FlowNodeControl.Designer.cs">
  63. <DependentUpon>FlowNodeControl.cs</DependentUpon>
  64. </Compile>
  65. <Compile Include="Properties\AssemblyInfo.cs" />
  66. <Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <EmbeddedResource Include="FlowBrokenLineControl.resx">
  70. <DependentUpon>FlowBrokenLineControl.cs</DependentUpon>
  71. </EmbeddedResource>
  72. <EmbeddedResource Include="FlowEditorCanvas.resx">
  73. <DependentUpon>FlowEditorCanvas.cs</DependentUpon>
  74. </EmbeddedResource>
  75. <EmbeddedResource Include="FlowNodeControl.resx">
  76. <DependentUpon>FlowNodeControl.cs</DependentUpon>
  77. </EmbeddedResource>
  78. <EmbeddedResource Include="Properties\Resources.resx">
  79. <Generator>ResXFileCodeGenerator</Generator>
  80. <SubType>Designer</SubType>
  81. </EmbeddedResource>
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>