WeChatSdk.csproj 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{6A8A2AF0-791D-4207-AB5B-99CAC28CEBD8}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>WeChatSdk</RootNamespace>
  11. <AssemblyName>WeChatSdk</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SccProjectName>SAK</SccProjectName>
  15. <SccLocalPath>SAK</SccLocalPath>
  16. <SccAuxPath>SAK</SccAuxPath>
  17. <SccProvider>SAK</SccProvider>
  18. <TargetFrameworkProfile />
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="LitJson, Version=0.7.0.0, Culture=neutral, processorArchitecture=MSIL">
  39. <HintPath>..\..\packages\LitJson.0.7.0\lib\LitJson.dll</HintPath>
  40. </Reference>
  41. <Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  42. <HintPath>..\..\packages\NLog.4.6.3\lib\net45\NLog.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Configuration" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.IO.Compression" />
  48. <Reference Include="System.Runtime.Serialization" />
  49. <Reference Include="System.ServiceModel" />
  50. <Reference Include="System.Transactions" />
  51. <Reference Include="System.Web" />
  52. <Reference Include="System.Xml.Linq" />
  53. <Reference Include="System.Data.DataSetExtensions" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Xml" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <Compile Include="Business\Config.cs" />
  60. <Compile Include="PayAPI\Data.cs" />
  61. <Compile Include="Business\DownloadBill.cs" />
  62. <Compile Include="PayAPI\Exception.cs" />
  63. <Compile Include="PayAPI\HttpService.cs" />
  64. <Compile Include="Business\JsApiPay.cs" />
  65. <Compile Include="PayAPI\Log.cs" />
  66. <Compile Include="Business\MicroPay.cs" />
  67. <Compile Include="Business\NativeNotify.cs" />
  68. <Compile Include="Business\NativePay.cs" />
  69. <Compile Include="PayAPI\Notify.cs" />
  70. <Compile Include="Business\OrderQuery.cs" />
  71. <Compile Include="Business\Refund.cs" />
  72. <Compile Include="Business\RefundQuery.cs" />
  73. <Compile Include="Business\ResultNotify.cs" />
  74. <Compile Include="PayAPI\WxPayApi.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <None Include="app.config" />
  79. <None Include="packages.config" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ProjectReference Include="..\Models\Models.csproj">
  83. <Project>{9cf77a29-fbde-4cf5-af10-c8a97485937a}</Project>
  84. <Name>Models</Name>
  85. </ProjectReference>
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  88. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  89. Other similar extension points exist, see Microsoft.Common.targets.
  90. <Target Name="BeforeBuild">
  91. </Target>
  92. <Target Name="AfterBuild">
  93. </Target>
  94. -->
  95. </Project>