-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from martincostello/AspNet-Core-3
Update to ASP.NET Core 3.0
- Loading branch information
Showing
28 changed files
with
493 additions
and
83 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Authors>Martin Costello</Authors> | ||
<Company>Just Eat</Company> | ||
<Copyright>Just Eat (c) 2016-$([System.DateTime]::Now.ToString(yyyy))</Copyright> | ||
<LangVersion>latest</LangVersion> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<Nullable>enable</Nullable> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/justeat/ApplePayJSSample</PackageProjectUrl> | ||
<PackageReleaseNotes>$(PackageProjectUrl)/releases</PackageReleaseNotes> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>applepay</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>$(PackageProjectUrl).git</RepositoryUrl> | ||
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion> | ||
<VersionPrefix>3.0.0</VersionPrefix> | ||
<VersionSuffix></VersionSuffix> | ||
</PropertyGroup> | ||
</Project> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "2.2.402" | ||
"version": "3.0.100" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
using Newtonsoft.Json; | ||
// Copyright (c) Just Eat, 2016. All rights reserved. | ||
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. | ||
|
||
using System.Text.Json.Serialization; | ||
|
||
namespace JustEat.ApplePayJS.Clients | ||
{ | ||
public class MerchantSessionRequest | ||
{ | ||
[JsonProperty("merchantIdentifier")] | ||
public string MerchantIdentifier { get; set; } | ||
[JsonPropertyName("merchantIdentifier")] | ||
public string? MerchantIdentifier { get; set; } | ||
|
||
[JsonProperty("displayName")] | ||
public string DisplayName { get; set; } | ||
[JsonPropertyName("displayName")] | ||
public string? DisplayName { get; set; } | ||
|
||
[JsonProperty("initiative")] | ||
public string Initiative { get; set; } | ||
[JsonPropertyName("initiative")] | ||
public string? Initiative { get; set; } | ||
|
||
[JsonProperty("initiativeContext")] | ||
public string InitiativeContext { get; set; } | ||
[JsonPropertyName("initiativeContext")] | ||
public string? InitiativeContext { get; set; } | ||
} | ||
} |
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
Oops, something went wrong.