LispReader.csproj 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  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>{2DDAEA33-FE40-4FF5-BF60-BBD4DD13576D}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>LispReader</RootNamespace>
  12. <AssemblyName>LispReader</AssemblyName>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>..\bin\Debug\</OutputPath>
  19. <DefineConstants>DEBUG;TRACE</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>..\bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. <DebugSymbols>true</DebugSymbols>
  32. <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
  33. </PropertyGroup>
  34. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  35. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  36. Other similar extension points exist, see Microsoft.Common.targets.
  37. <Target Name="BeforeBuild">
  38. </Target>
  39. <Target Name="AfterBuild">
  40. </Target>
  41. -->
  42. <ItemGroup>
  43. <Compile Include="AssemblyInfo.cs" />
  44. <Compile Include="FieldOrProperty.cs" />
  45. <Compile Include="ICustomLispSerializer.cs" />
  46. <Compile Include="LispAttributes.cs" />
  47. <Compile Include="LispRootSerializer.cs" />
  48. <Compile Include="LispSerializer.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\gtkgl-sharp\gtkgl-sharp.csproj">
  52. <Project>{BA787F0F-DD07-45A1-B4D8-6F643ADE289C}</Project>
  53. <Name>gtkgl-sharp</Name>
  54. </ProjectReference>
  55. <ProjectReference Include="..\libeditor\libeditor.csproj">
  56. <Project>{FD0B9E66-17B4-495E-B099-439507637A6C}</Project>
  57. <Name>libeditor</Name>
  58. </ProjectReference>
  59. <ProjectReference Include="..\Lisp\Lisp.csproj">
  60. <Project>{9EC3C894-3BEA-419C-ABE1-634B86AE7C0C}</Project>
  61. <Name>Lisp</Name>
  62. </ProjectReference>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Reference Include="atk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  66. <Package>gtk-sharp-2.0</Package>
  67. </Reference>
  68. <Reference Include="glib-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  69. <Package>glib-sharp-2.0</Package>
  70. </Reference>
  71. <Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
  72. <Package>gtk-sharp-2.0</Package>
  73. </Reference>
  74. </ItemGroup>
  75. </Project>