Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

Fax Adapter

Rate me:
Please Sign up or sign in to vote.
3.62/5 (13 votes)
28 Sep 2006CPOL4 min read 63.4K   994   31  
Fax Adapter for BizTalk Server 2006
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{44B780E7-6D79-4BAF-9994-28CFFA1172A6}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Microsoft.Samples.BizTalk.Adapter.Common</RootNamespace>
    <AssemblyName>Microsoft.Samples.BizTalk.Adapter.Common</AssemblyName>
    <StartupObject>
    </StartupObject>
    <SignAssembly>true</SignAssembly>
    <AssemblyOriginatorKeyFile>BaseAdapter.snk</AssemblyOriginatorKeyFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <ItemGroup>
    <Compile Include="Adapter.cs" />
    <Compile Include="AdapterExceptions.cs" />
    <Compile Include="AdapterManagementBase.cs" />
    <Compile Include="AssemblyInfo.cs" />
    <Compile Include="AsyncTransmitter.cs" />
    <Compile Include="AsyncTransmitterBatch.cs" />
    <Compile Include="AsyncTransmitterEndpoint.cs" />
    <Compile Include="Batch.cs" />
    <Compile Include="ConfigProperties.cs" />
    <Compile Include="ControlledTermination.cs" />
    <Compile Include="ReceiveBatch.cs" />
    <Compile Include="Receiver.cs" />
    <Compile Include="ReceiverEndpoint.cs" />
    <Compile Include="ReceiveTxnBatch.cs" />
    <Compile Include="SyncReceiveSubmitBatch.cs" />
    <Compile Include="TransmitResponseBatch.cs" />
    <Compile Include="TxnBatch.cs" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="Microsoft.BizTalk.GlobalPropertySchemas, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\..\..\..\..\..\Microsoft.BizTalk.GlobalPropertySchemas.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.BizTalk.Interop.TransportProxy, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\..\..\..\..\..\Microsoft.BizTalk.Interop.TransportProxy.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.BizTalk.Pipeline, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\..\..\..\..\..\Microsoft.BizTalk.Pipeline.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.BizTalk.Streaming, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\..\..\..\..\..\bins\i386\mozart\Microsoft.BizTalk.Streaming.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.XLANGs.BaseTypes, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\..\..\..\..\..\Microsoft.XLANGs.BaseTypes.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Transactions" />
    <Reference Include="System.XML" />
  </ItemGroup>
  <ItemGroup>
    <None Include="BaseAdapter.snk" />
    <None Include="ClassDiagram2.cd" />
    <None Include="ClassDiagram3.cd" />
  </ItemGroup>
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
Anil is from Hyderabad, Andhra Pradesh. He is Currently Working with VisualSoft Technologies Ltd., As a Software Engineer.

Anil has more than 4 yrs of experience in the IT industry working on Microsoft Technologies. He is involved in various project activities like System Architecture, Design, and Development. Technical experience most specifically ASP.NET , Javascript, Biztalk 2004/2006, Webservices, C# and .NET framework. He has have worked on various language and platforms. He is Microsoft Certified professional.

The author has won several programming awards within the organizations worked and is well-recognized.


--

Comments and Discussions