瑞宏网订单接口示例程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

einv-demo-order-cs.csproj 3.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{EB51574C-DA86-4CBE-BC6B-1FCA249B0D6A}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>einv_demo_order_cs</RootNamespace>
  11. <AssemblyName>einv-demo-order-cs</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  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. <ItemGroup>
  35. <Reference Include="Newtonsoft.Json, Version=4.0.3.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>lib\Newtonsoft.Json.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Runtime.Serialization" />
  42. <Reference Include="System.Security" />
  43. <Reference Include="System.Web" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="com\chinaeinv\einv\order\dto\Invoice.cs" />
  52. <Compile Include="com\chinaeinv\einv\order\dto\InvoiceItem.cs" />
  53. <Compile Include="com\chinaeinv\einv\order\dto\InvoiceResult.cs" />
  54. <Compile Include="com\chinaeinv\einv\order\dto\Order.cs" />
  55. <Compile Include="com\chinaeinv\einv\order\dto\OrderBase.cs" />
  56. <Compile Include="com\chinaeinv\einv\order\dto\OrderItem.cs" />
  57. <Compile Include="com\chinaeinv\einv\order\dto\Result.cs" />
  58. <Compile Include="com\chinaeinv\einv\order\OrderFacade.cs" />
  59. <Compile Include="com\chinaeinv\einv\order\OrderFacadeAgent.cs" />
  60. <Compile Include="Program.cs" />
  61. <Compile Include="Properties\AssemblyInfo.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Content Include="lib\Newtonsoft.Json.dll">
  65. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  66. </Content>
  67. <Content Include="lib\Newtonsoft.Json.pdb">
  68. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  69. </Content>
  70. <Content Include="lib\Newtonsoft.Json.xml">
  71. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  72. </Content>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <None Include="PTTEST17.pfx" />
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>