-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shangamesh T
committed
Jan 22, 2021
1 parent
6157817
commit 61ef98b
Showing
21 changed files
with
346 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,154 +1,44 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{A8D8E745-6C1D-4A33-B2C5-4F7C1E4FD4DF}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>AmazonPay</RootNamespace> | ||
<AssemblyName>AmazonPay</AssemblyName> | ||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\..\..\GitHub\login-and-pay-with-amazon-sdk-samples\Csharp\</SolutionDir> | ||
<RestorePackages>true</RestorePackages> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>..\lib\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>..\lib\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>..\lib\AmazonPay.xml</DocumentationFile> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<Prefer32Bit>false</Prefer32Bit> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>true</SignAssembly> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>KeyFile.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<DelaySign>false</DelaySign> | ||
<TargetFrameworks>netstandard2.0;net20</TargetFrameworks> | ||
<Copyright>Copyright © 2017-2020</Copyright> | ||
<Company>Amazon Pay</Company> | ||
<Version>3.8.0</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Common.Logging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Common.Logging.2.0.0\lib\2.0\Common.Logging.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net20\Newtonsoft.Json.dll</HintPath> | ||
</Reference> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" /> | ||
<PackageReference Include="Common.Logging" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<PackageReference Include="Common.Logging" Version="3.4.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.1.9" /> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" /> | ||
<PackageReference Include="System.Runtime.Caching" Version="4.7.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.10" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.10" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.10" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
<DefineConstants>NETSTANDARD;</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)' == 'net20'"> | ||
<Reference Include="System" /> | ||
<Reference Include="System.configuration" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="AccountStatus.cs" /> | ||
<Compile Include="BillingAgreementType.cs" /> | ||
<Compile Include="Client.cs" /> | ||
<Compile Include="Constants.cs" /> | ||
<Compile Include="DelegateRequest.cs" /> | ||
<Compile Include="HttpImpl.cs" /> | ||
<Compile Include="IClient.cs" /> | ||
<Compile Include="IpnHandler.cs" /> | ||
<Compile Include="NestedJsonToDictionary.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="ProviderCreditRequests\GetProviderCreditReversalDetailsRequest.cs" /> | ||
<Compile Include="ProviderCreditRequests\ReverseProviderCreditRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\AuthorizeOnBillingAgreementRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\CloseBillingAgreementRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\ConfirmBillingAgreementRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\CreateOrderReferenceForIdRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\GetBillingAgreementDetailsRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\SetBillingAgreementDetailsRequest.cs" /> | ||
<Compile Include="RecurringPaymentRequests\ValidateBillingAgreementRequest.cs" /> | ||
<Compile Include="region.Designer.cs"> | ||
<AutoGen>True</AutoGen> | ||
<DesignTimeSharedInput>True</DesignTimeSharedInput> | ||
<DependentUpon>region.settings</DependentUpon> | ||
</Compile> | ||
<Compile Include="Regions.cs" /> | ||
<Compile Include="ResponseParser.cs" /> | ||
<Compile Include="Responses\AbstractResponse.cs" /> | ||
<Compile Include="Responses\AuthorizeResponse.cs" /> | ||
<Compile Include="Responses\BillingAddressDetails.cs" /> | ||
<Compile Include="Responses\BillingAgreementDetailsResponse.cs" /> | ||
<Compile Include="Responses\CancelOrderReferenceResponse.cs" /> | ||
<Compile Include="Responses\CaptureResponse.cs" /> | ||
<Compile Include="Responses\ChargebackResponse.cs" /> | ||
<Compile Include="Responses\ConfirmOrderReferenceResponse.cs" /> | ||
<Compile Include="Responses\CloseAuthorizationResponse.cs" /> | ||
<Compile Include="Responses\CloseBillingAgreementResponse.cs" /> | ||
<Compile Include="Responses\CloseOrderReferenceResponse.cs" /> | ||
<Compile Include="Responses\ConfirmBillingAgreementResponse.cs" /> | ||
<Compile Include="Responses\ErrorResponse.cs" /> | ||
<Compile Include="Responses\GetMerchantAccountStatusResponse.cs" /> | ||
<Compile Include="Responses\GetMerchantNotificationConfigurationResponse.cs" /> | ||
<Compile Include="Responses\ListOrderReferenceResponse.cs" /> | ||
<Compile Include="Responses\Operator.cs" /> | ||
<Compile Include="Responses\PaymentDetailsResponse.cs" /> | ||
<Compile Include="Responses\GetProviderCreditDetailsResponse.cs" /> | ||
<Compile Include="Responses\GetProviderCreditReversalDetailsResponse.cs" /> | ||
<Compile Include="Responses\GetServiceStatusResponse.cs" /> | ||
<Compile Include="Responses\IResponse.cs" /> | ||
<Compile Include="Responses\OrderReferenceDetailsResponse.cs" /> | ||
<Compile Include="Responses\RefundResponse.cs" /> | ||
<Compile Include="Responses\SetMerchantNotificationConfigurationResponse.cs" /> | ||
<Compile Include="Responses\ValidateBillingAgreementResponse.cs" /> | ||
<Compile Include="SanitizeData.cs" /> | ||
<Compile Include="Signature.cs" /> | ||
<Compile Include="StandardPaymentRequests\AuthorizeRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\CancelOrderReferenceRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\CaptureRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\ChargeRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\ListOrderReferenceByNextTokenRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\ListOrderReferenceRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\SetMerchantNotificationConfigurationRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetMerchantNotificationConfigurationRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\CloseAuthorizationRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\CloseOrderReferenceRequest.cs" /> | ||
<Compile Include="CommonRequests\Configuration.cs" /> | ||
<Compile Include="StandardPaymentRequests\ConfirmOrderReferenceRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetAuthorizationDetailsRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetCaptureDetailsRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetMerchantAccountStatusRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetOrderReferenceDetailsRequest.cs" /> | ||
<Compile Include="ProviderCreditRequests\GetProviderCreditDetailsRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\GetRefundDetailsRequest.cs" /> | ||
<Compile Include="CommonRequests\GetServiceStatusRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\RefundRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\SetOrderAttributesRequest.cs" /> | ||
<Compile Include="StandardPaymentRequests\SetOrderReferenceDetailsRequest.cs" /> | ||
<Compile Remove="Properties\**" /> | ||
<EmbeddedResource Remove="Properties\**" /> | ||
<None Remove="Properties\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="KeyFile.snk" /> | ||
<None Include="packages.config"> | ||
<SubType>Designer</SubType> | ||
</None> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net20'"> | ||
<DefineConstants>NETFULL</DefineConstants> | ||
</PropertyGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.