CCodeGeneration.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" 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.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{7DA7C0AB-0982-4BF5-9324-F59A7A08D65B}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CCodeGeneration</RootNamespace>
  12. <AssemblyName>CCodeGeneration</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  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. <ItemGroup>
  35. <Reference Include="System" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="CFile.cs" />
  39. <Compile Include="Code.cs" />
  40. <Compile Include="CodeContainerBase.cs" />
  41. <Compile Include="CodeElement.cs" />
  42. <Compile Include="Comment.cs" />
  43. <Compile Include="EmptyLine.cs" />
  44. <Compile Include="Function.cs" />
  45. <Compile Include="CGenerator.cs" />
  46. <Compile Include="IfThenElse.cs" />
  47. <Compile Include="PlainText.cs" />
  48. <Compile Include="Switch.cs" />
  49. <Compile Include="PP_If.cs" />
  50. <Compile Include="PP_Ifdef.cs" />
  51. <Compile Include="PP_Include.cs" />
  52. <Compile Include="FunctionDeclaration.cs" />
  53. <Compile Include="PP_Macro.cs" />
  54. <Compile Include="Properties\AssemblyInfo.cs" />
  55. <Compile Include="VariableDeclaration.cs" />
  56. <Compile Include="VariablePrototype.cs" />
  57. <Compile Include="VariableType.cs" />
  58. </ItemGroup>
  59. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  60. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  61. Other similar extension points exist, see Microsoft.Common.targets.
  62. <Target Name="BeforeBuild">
  63. </Target>
  64. <Target Name="AfterBuild">
  65. </Target>
  66. -->
  67. </Project>