InvoiceLayout.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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, Version=0.16.9.0, Culture=neutral, PublicKeyToken=4e88037ac681fe60, processorArchitecture=MSIL">
  63. <SpecificVersion>False</SpecificVersion>
  64. <HintPath>..\..\DLL\zxing.dll</HintPath>
  65. </Reference>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="BarcodeDraw.cs" />
  69. <Compile Include="Barcode\Core\Core.cs" />
  70. <Compile Include="Barcode\Core\DrawingOptions.cs" />
  71. <Compile Include="Barcode\ImageHelper.cs" />
  72. <Compile Include="Barcode\OneD\OneDData.cs" />
  73. <Compile Include="Barcode\OneD\OneDDrawingOptions.cs" />
  74. <Compile Include="Barcode\OneD\OneDFormat.cs" />
  75. <Compile Include="Barcode\OneD\OneDHelper.cs" />
  76. <Compile Include="Barcode\QRCode\QRCodeData.cs" />
  77. <Compile Include="Barcode\QRCode\QRCodeDrawingOptions.cs" />
  78. <Compile Include="Barcode\QRCode\QRCodeEncodingOptions.cs" />
  79. <Compile Include="Barcode\QRCode\QRCodeHelper.cs" />
  80. <Compile Include="Barcode\QRCode\QRECLevel.cs" />
  81. <Compile Include="Common\LayoutCommon.cs" />
  82. <Compile Include="Common\LayoutUtility.cs" />
  83. <Compile Include="DataModel\LayoutConsts.cs" />
  84. <Compile Include="DataModel\LayoutObjects.cs" />
  85. <Compile Include="DataModel\PropertyOfLayoutBox.cs" />
  86. <Compile Include="DataModel\TextRectangleF.cs" />
  87. <Compile Include="Items\DataGridItem\GridItem.cs" />
  88. <Compile Include="Items\DataGridItem\GridItemColumn.cs" />
  89. <Compile Include="Items\DataGridItem\GridItemColumnCollection.cs" />
  90. <Compile Include="Items\DataGridItem\PageNumItem.cs" />
  91. <Compile Include="Items\DataGridItem\TotalTextItem.cs" />
  92. <Compile Include="Items\EllipseItem.cs" />
  93. <Compile Include="Items\GraphicsItem.cs" />
  94. <Compile Include="Items\IBoundItem.cs" />
  95. <Compile Include="Items\ImageItem.cs" />
  96. <Compile Include="Items\LayoutItem.cs" />
  97. <Compile Include="Items\RectangleItem.cs" />
  98. <Compile Include="Items\TextItem.cs" />
  99. <Compile Include="Properties\AssemblyInfo.cs" />
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. </Project>