Committed C# port from Mohamad
[zxing.git] / csharp / zxing.csproj
diff --git a/csharp/zxing.csproj b/csharp/zxing.csproj
new file mode 100755 (executable)
index 0000000..364b718
--- /dev/null
@@ -0,0 +1,135 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup>\r
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>\r
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>\r
+    <ProductVersion>9.0.30729</ProductVersion>\r
+    <SchemaVersion>2.0</SchemaVersion>\r
+    <ProjectGuid>{22174889-87F2-4843-A5CE-99A4847D24EE}</ProjectGuid>\r
+    <OutputType>Library</OutputType>\r
+    <AppDesignerFolder>Properties</AppDesignerFolder>\r
+    <RootNamespace>com.google.zxing</RootNamespace>\r
+    <AssemblyName>com.google.zxing</AssemblyName>\r
+    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>\r
+    <FileAlignment>512</FileAlignment>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+    <DebugSymbols>true</DebugSymbols>\r
+    <DebugType>full</DebugType>\r
+    <Optimize>false</Optimize>\r
+    <OutputPath>bin\Debug\</OutputPath>\r
+    <DefineConstants>DEBUG;TRACE</DefineConstants>\r
+    <ErrorReport>prompt</ErrorReport>\r
+    <WarningLevel>4</WarningLevel>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+    <DebugType>pdbonly</DebugType>\r
+    <Optimize>true</Optimize>\r
+    <OutputPath>bin\Release\</OutputPath>\r
+    <DefineConstants>TRACE</DefineConstants>\r
+    <ErrorReport>prompt</ErrorReport>\r
+    <WarningLevel>4</WarningLevel>\r
+  </PropertyGroup>\r
+  <ItemGroup>\r
+    <Reference Include="System" />\r
+    <Reference Include="System.Core">\r
+      <RequiredTargetFramework>3.5</RequiredTargetFramework>\r
+    </Reference>\r
+    <Reference Include="System.Drawing" />\r
+    <Reference Include="System.Xml.Linq">\r
+      <RequiredTargetFramework>3.5</RequiredTargetFramework>\r
+    </Reference>\r
+    <Reference Include="System.Data.DataSetExtensions">\r
+      <RequiredTargetFramework>3.5</RequiredTargetFramework>\r
+    </Reference>\r
+    <Reference Include="System.Data" />\r
+    <Reference Include="System.Xml" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <Compile Include="BarcodeFormat.cs" />\r
+    <Compile Include="BufferedImageMonochromeBitmapSource.cs" />\r
+    <Compile Include="common\BitMatrix.cs" />\r
+    <Compile Include="BlackPointEstimationMethod.cs" />\r
+    <Compile Include="common\BaseMonochromeBitmapSource.cs" />\r
+    <Compile Include="common\BitArray.cs" />\r
+    <Compile Include="common\BitSource.cs" />\r
+    <Compile Include="common\BlackPointEstimator.cs" />\r
+    <Compile Include="common\ByteArray.cs" />\r
+    <Compile Include="common\ByteMatrix.cs" />\r
+    <Compile Include="common\CharacterSetECI.cs" />\r
+    <Compile Include="common\Collections.cs" />\r
+    <Compile Include="common\Comparator.cs" />\r
+    <Compile Include="common\DecoderResult.cs" />\r
+    <Compile Include="common\DefaultGridSampler.cs" />\r
+    <Compile Include="common\DetectorResult.cs" />\r
+    <Compile Include="common\ECI.cs" />\r
+    <Compile Include="common\GenericResultPoint.cs" />\r
+    <Compile Include="common\GridSampler.cs" />\r
+    <Compile Include="common\PerspectiveTransform.cs" />\r
+    <Compile Include="common\reedsolomon\GF256.cs" />\r
+    <Compile Include="common\reedsolomon\GF256Poly.cs" />\r
+    <Compile Include="common\reedsolomon\ReedSolomonDecoder.cs" />\r
+    <Compile Include="common\reedsolomon\ReedSolomonEncoder.cs" />\r
+    <Compile Include="common\reedsolomon\ReedSolomonException.cs" />\r
+    <Compile Include="DecodeHintType.cs" />\r
+    <Compile Include="EncodeHintType.cs" />\r
+    <Compile Include="oned\MultiFormatOneDReader.cs" />\r
+    <Compile Include="MultiFormatWriter.cs" />\r
+    <Compile Include="oned\AbstractOneDReader.cs" />\r
+    <Compile Include="oned\AbstractUPCEANReader.cs" />\r
+    <Compile Include="oned\Code128Reader.cs" />\r
+    <Compile Include="oned\Code39Reader.cs" />\r
+    <Compile Include="oned\EAN13Reader.cs" />\r
+    <Compile Include="oned\EAN8Reader.cs" />\r
+    <Compile Include="oned\ITFReader.cs" />\r
+    <Compile Include="oned\MultiFormatUPCEANReader.cs" />\r
+    <Compile Include="oned\OneDReader.cs" />\r
+    <Compile Include="oned\UPCAReader.cs" />\r
+    <Compile Include="oned\UPCEANReader.cs" />\r
+    <Compile Include="oned\UPCEReader.cs" />\r
+    <Compile Include="qrcode\decoder\DataBlock.cs" />\r
+    <Compile Include="qrcode\decoder\DataMask.cs" />\r
+    <Compile Include="qrcode\decoder\DecodedBitStreamParser.cs" />\r
+    <Compile Include="qrcode\decoder\Decoder.cs" />\r
+    <Compile Include="qrcode\decoder\FormatInformation.cs" />\r
+    <Compile Include="MonochromeBitmapSource.cs" />\r
+    <Compile Include="MultiFormatReader.cs" />\r
+    <Compile Include="Properties\AssemblyInfo.cs" />\r
+    <Compile Include="qrcode\decoder\BitMatrixParser.cs" />\r
+    <Compile Include="qrcode\decoder\ErrorCorrectionLevel.cs" />\r
+    <Compile Include="qrcode\decoder\Mode.cs" />\r
+    <Compile Include="qrcode\decoder\Version.cs" />\r
+    <Compile Include="qrcode\detector\AlignmentPattern.cs" />\r
+    <Compile Include="qrcode\detector\AlignmentPatternFinder.cs" />\r
+    <Compile Include="qrcode\detector\Detector.cs" />\r
+    <Compile Include="qrcode\detector\FinderPattern.cs" />\r
+    <Compile Include="qrcode\detector\FinderPatternFinder.cs" />\r
+    <Compile Include="qrcode\detector\FinderPatternInfo.cs" />\r
+    <Compile Include="qrcode\encoder\BitVector.cs" />\r
+    <Compile Include="qrcode\encoder\Encoder.cs" />\r
+    <Compile Include="qrcode\encoder\MaskUtil.cs" />\r
+    <Compile Include="qrcode\encoder\MatrixUtil.cs" />\r
+    <Compile Include="qrcode\encoder\QRCode.cs" />\r
+    <Compile Include="qrcode\QRCodeReader.cs" />\r
+    <Compile Include="qrcode\QRCodeWriter.cs" />\r
+    <Compile Include="Reader.cs" />\r
+    <Compile Include="ReaderException.cs" />\r
+    <Compile Include="Result.cs" />\r
+    <Compile Include="ResultMetadataType.cs" />\r
+    <Compile Include="ResultPoint.cs" />\r
+    <Compile Include="SupportClass.cs" />\r
+    <Compile Include="Writer.cs" />\r
+    <Compile Include="WriterException.cs" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <Content Include="Note.txt" />\r
+  </ItemGroup>\r
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />\r
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \r
+       Other similar extension points exist, see Microsoft.Common.targets.\r
+  <Target Name="BeforeBuild">\r
+  </Target>\r
+  <Target Name="AfterBuild">\r
+  </Target>\r
+  -->\r
+</Project>
\ No newline at end of file