libeditor.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>{FD0B9E66-17B4-495E-B099-439507637A6C}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>libeditor</RootNamespace>
  12. <AssemblyName>libeditor</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. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>false</Optimize>
  29. <OutputPath>..\bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  34. </PropertyGroup>
  35. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  36. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  37. Other similar extension points exist, see Microsoft.Common.targets.
  38. <Target Name="BeforeBuild">
  39. </Target>
  40. <Target Name="AfterBuild">
  41. </Target>
  42. -->
  43. <ItemGroup>
  44. <Compile Include="AssemblyInfo.cs" />
  45. <Compile Include="LogManager.cs" />
  46. <Compile Include="DataStructures\Field.cs" />
  47. <Compile Include="DataStructures\FieldPos.cs" />
  48. <Compile Include="DataStructures\Matrix.cs" />
  49. <Compile Include="DataStructures\RectangleF.cs" />
  50. <Compile Include="DataStructures\Vector.cs" />
  51. <Compile Include="Drawing\Color.cs" />
  52. <Compile Include="Drawing\GlUtil.cs" />
  53. <Compile Include="Drawing\ImageTexture.cs" />
  54. <Compile Include="Drawing\Surface.cs" />
  55. <Compile Include="Drawing\Texture.cs" />
  56. <Compile Include="Drawing\TextureManager.cs" />
  57. <Compile Include="ErrorDialog.cs" />
  58. <Compile Include="GLWidgetBase.cs" />
  59. <Compile Include="IEditor.cs" />
  60. <Compile Include="Libs\OpenGl.cs" />
  61. <Compile Include="Libs\OpenGlUtil.cs" />
  62. <Compile Include="Libs\Sdl.cs" />
  63. <Compile Include="Libs\SdlImage.cs" />
  64. <Compile Include="RenderView.cs" />
  65. <Compile Include="SceneGraph\ColorNode.cs" />
  66. <Compile Include="SceneGraph\Layer.cs" />
  67. <Compile Include="SceneGraph\Node.cs" />
  68. <Compile Include="SceneGraph\NodeWithChilds.cs" />
  69. <Compile Include="SceneGraph\Rect.cs" />
  70. <Compile Include="SceneGraph\Transform.cs" />
  71. <Compile Include="ScrollBarRenderView.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <ProjectReference Include="..\gtkgl-sharp\gtkgl-sharp.csproj">
  75. <Project>{BA787F0F-DD07-45A1-B4D8-6F643ADE289C}</Project>
  76. <Name>gtkgl</Name>
  77. </ProjectReference>
  78. <ProjectReference Include="..\Resources\Resources.csproj">
  79. <Project>{77EC70E4-F69F-4929-AA4B-3CA90D467F7D}</Project>
  80. <Name>Resources</Name>
  81. </ProjectReference>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <EmbeddedResource Include="resources\errordialog.glade">
  85. <LogicalName>errordialog.glade</LogicalName>
  86. </EmbeddedResource>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <Reference Include="atk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  90. <Reference Include="gdk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  91. <Reference Include="glade-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  92. <Reference Include="glib-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  93. <Reference Include="gtk-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
  94. </ItemGroup>
  95. </Project>