Dock.csproj 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project 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.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{25EDC925-F941-4DF1-9824-52F03F819757}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Dock</RootNamespace>
  12. <AssemblyName>Dock</AssemblyName>
  13. <StartupObject>
  14. </StartupObject>
  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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  34. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  35. Other similar extension points exist, see Microsoft.Common.targets.
  36. <Target Name="BeforeBuild">
  37. </Target>
  38. <Target Name="AfterBuild">
  39. </Target>
  40. -->
  41. <ItemGroup>
  42. <Compile Include="AfterAttribute.cs" />
  43. <Compile Include="AssemblyInfo.cs" />
  44. <Compile Include="DetachedHandler.cs" />
  45. <Compile Include="Dock.cs" />
  46. <Compile Include="DockBar.cs" />
  47. <Compile Include="DockBarButton.cs" />
  48. <Compile Include="DockedHandler.cs" />
  49. <Compile Include="DockItem.cs" />
  50. <Compile Include="DockItemBehavior.cs" />
  51. <Compile Include="DockItemGrip.cs" />
  52. <Compile Include="DockLayout.cs" />
  53. <Compile Include="DockMaster.cs" />
  54. <Compile Include="DockNotebook.cs" />
  55. <Compile Include="DockObject.cs" />
  56. <Compile Include="DockObjectFlags.cs" />
  57. <Compile Include="DockPaned.cs" />
  58. <Compile Include="DockPlaceholder.cs" />
  59. <Compile Include="DockPlacement.cs" />
  60. <Compile Include="DockRequest.cs" />
  61. <Compile Include="ExportAttribute.cs" />
  62. <Compile Include="GdlStock.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Reference Include="atk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  66. <Reference Include="gdk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  67. <Reference Include="glade-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  68. <Reference Include="glib-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  69. <Reference Include="gtk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  70. <Reference Include="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  71. <Reference Include="System.XML" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <EmbeddedResource Include="resources\layout.glade">
  75. <LogicalName>layout.glade</LogicalName>
  76. </EmbeddedResource>
  77. <EmbeddedResource Include="resources\stock-menu-right-12.png">
  78. <LogicalName>stock-menu-right-12.png</LogicalName>
  79. </EmbeddedResource>
  80. <EmbeddedResource Include="resources\stock-close-12.png">
  81. <LogicalName>stock-close-12.png</LogicalName>
  82. </EmbeddedResource>
  83. <EmbeddedResource Include="resources\stock-menu-left-12.png">
  84. <LogicalName>stock-menu-left-12.png</LogicalName>
  85. </EmbeddedResource>
  86. </ItemGroup>
  87. </Project>