123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>8.0.50727</ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{FD0B9E66-17B4-495E-B099-439507637A6C}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>libeditor</RootNamespace>
- <AssemblyName>libeditor</AssemblyName>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\Debug\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\bin\Release\</OutputPath>
- <DefineConstants>TRACE;WINDOWS</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DebugSymbols>true</DebugSymbols>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- </PropertyGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- <ItemGroup>
- <Compile Include="AssemblyInfo.cs" />
- <Compile Include="ITool.cs" />
- <Compile Include="Libs\GLHelper.cs" />
- <Compile Include="LogManager.cs" />
- <Compile Include="DataStructures\Field.cs" />
- <Compile Include="DataStructures\FieldPos.cs" />
- <Compile Include="DataStructures\Matrix.cs" />
- <Compile Include="DataStructures\RectangleF.cs" />
- <Compile Include="DataStructures\Vector.cs" />
- <Compile Include="Drawing\Color.cs" />
- <Compile Include="Drawing\GlUtil.cs" />
- <Compile Include="Drawing\ImageTexture.cs" />
- <Compile Include="Drawing\Surface.cs" />
- <Compile Include="Drawing\Texture.cs" />
- <Compile Include="Drawing\TextureManager.cs" />
- <Compile Include="ErrorDialog.cs" />
- <Compile Include="GLWidgetBase.cs" />
- <Compile Include="Libs\OpenGl.cs" />
- <Compile Include="Libs\OpenGlUtil.cs" />
- <Compile Include="RenderView.cs" />
- <Compile Include="SceneGraph\ColorNode.cs" />
- <Compile Include="SceneGraph\Layer.cs" />
- <Compile Include="SceneGraph\Node.cs" />
- <Compile Include="SceneGraph\NodeWithChilds.cs" />
- <Compile Include="SceneGraph\Rect.cs" />
- <Compile Include="SceneGraph\Transform.cs" />
- <Compile Include="ScrollBarRenderView.cs" />
- <Compile Include="ReferenceComparer.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\gtkgl-sharp\gtkgl-sharp.csproj">
- <Project>{BA787F0F-DD07-45A1-B4D8-6F643ADE289C}</Project>
- <Name>gtkgl-sharp</Name>
- </ProjectReference>
- <ProjectReference Include="..\Resources\Resources.csproj">
- <Project>{77EC70E4-F69F-4929-AA4B-3CA90D467F7D}</Project>
- <Name>Resources</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources\errordialog.glade">
- <LogicalName>errordialog.glade</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
- <ItemGroup>
- <Reference Include="atk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
- <Package>gtk-sharp-2.0</Package>
- </Reference>
- <Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
- <Package>gtk-sharp-2.0</Package>
- </Reference>
- <Reference Include="glade-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
- <Package>glade-sharp-2.0</Package>
- </Reference>
- <Reference Include="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
- <Package>glib-sharp-2.0</Package>
- </Reference>
- <Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
- <Package>gtk-sharp-2.0</Package>
- </Reference>
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <None Include="..\libeditor.dll.config">
- <Link>libeditor.dll.config</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|