KSharpEditor.csproj 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{3C07F543-3D96-4AC2-97B4-FF399FE558EC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>KSharpEditor</RootNamespace>
  11. <AssemblyName>KSharpEditor</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <RegisterForComInterop>false</RegisterForComInterop>
  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. <PropertyGroup>
  35. <StartupObject />
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Drawing" />
  41. <Reference Include="System.Windows.Forms" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="Microsoft.CSharp" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Net.Http" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Args\EditorArgs.cs" />
  51. <Compile Include="Args\ErrorArgs.cs" />
  52. <Compile Include="KBrowser.cs">
  53. <SubType>Component</SubType>
  54. </Compile>
  55. <Compile Include="KEditor.cs">
  56. <SubType>UserControl</SubType>
  57. </Compile>
  58. <Compile Include="Properties\AssemblyInfo.cs" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <EmbeddedResource Include="KEditor.resx">
  62. <DependentUpon>KEditor.cs</DependentUpon>
  63. </EmbeddedResource>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <EmbeddedResource Include="Resources\editor.html" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <WCFMetadata Include="Connected Services\" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <COMReference Include="SHDocVw">
  73. <Guid>{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}</Guid>
  74. <VersionMajor>1</VersionMajor>
  75. <VersionMinor>1</VersionMinor>
  76. <Lcid>0</Lcid>
  77. <WrapperTool>tlbimp</WrapperTool>
  78. <Isolated>False</Isolated>
  79. <EmbedInteropTypes>True</EmbedInteropTypes>
  80. </COMReference>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. </Project>