InvoiceLayout.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{440B03E6-474C-439A-AF83-900A01A57ABE}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>InvoiceLayout</RootNamespace>
  10. <AssemblyName>InvoiceLayout</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <PropertyGroup>
  35. <StartupObject />
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  38. <DebugSymbols>true</DebugSymbols>
  39. <OutputPath>bin\x86\Debug\</OutputPath>
  40. <DefineConstants>DEBUG;TRACE</DefineConstants>
  41. <DebugType>full</DebugType>
  42. <PlatformTarget>x86</PlatformTarget>
  43. <ErrorReport>prompt</ErrorReport>
  44. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  47. <OutputPath>bin\x86\Release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>x86</PlatformTarget>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. </PropertyGroup>
  55. <ItemGroup>
  56. <Reference Include="Curtain.Framework">
  57. <HintPath>..\..\DLL\Curtain.Framework.dll</HintPath>
  58. </Reference>
  59. <Reference Include="System" />
  60. <Reference Include="System.Data" />
  61. <Reference Include="System.Drawing" />
  62. <Reference Include="zxing">
  63. <HintPath>..\..\DLL\zxing.dll</HintPath>
  64. </Reference>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="BarcodeDraw.cs" />
  68. <Compile Include="Common\LayoutCommon.cs" />
  69. <Compile Include="Common\LayoutUtility.cs" />
  70. <Compile Include="DataModel\LayoutConsts.cs" />
  71. <Compile Include="DataModel\LayoutObjects.cs" />
  72. <Compile Include="DataModel\PropertyOfLayoutBox.cs" />
  73. <Compile Include="DataModel\TextRectangleF.cs" />
  74. <Compile Include="Items\DataGridItem\GridItem.cs" />
  75. <Compile Include="Items\DataGridItem\GridItemColumn.cs" />
  76. <Compile Include="Items\DataGridItem\GridItemColumnCollection.cs" />
  77. <Compile Include="Items\DataGridItem\PageNumItem.cs" />
  78. <Compile Include="Items\DataGridItem\TotalTextItem.cs" />
  79. <Compile Include="Items\EllipseItem.cs" />
  80. <Compile Include="Items\GraphicsItem.cs" />
  81. <Compile Include="Items\IBoundItem.cs" />
  82. <Compile Include="Items\ImageItem.cs" />
  83. <Compile Include="Items\LayoutItem.cs" />
  84. <Compile Include="Items\RectangleItem.cs" />
  85. <Compile Include="Items\TextItem.cs" />
  86. <Compile Include="Properties\AssemblyInfo.cs" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. </Project>