BasePayDemo.csproj 702 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net48</TargetFramework>
  5. <StartupObject>BasePayDemo.Program</StartupObject>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\BasePaySdk\BasePaySdk.csproj" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <Reference Include="BasePaySdk">
  12. <HintPath>..\BasePaySdk\bin\Release\net4.0\BasePaySdk.dll</HintPath>
  13. </Reference>
  14. <Reference Include="BouncyCastle.Crypto">
  15. <HintPath>..\libs\BouncyCastle.Crypto.dll</HintPath>
  16. </Reference>
  17. <Reference Include="Newtonsoft.Json">
  18. <HintPath>..\libs\Newtonsoft.Json.dll</HintPath>
  19. </Reference>
  20. </ItemGroup>
  21. </Project>