Skip to content

Commit

Permalink
Use {{nrt?}}
Browse files Browse the repository at this point in the history
  • Loading branch information
mjansrud committed Jul 19, 2024
1 parent c52d1aa commit 90c15a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ namespace {{packageName}}.Client
/// Gets or sets the client scope for OAuth2 authentication.
/// </summary>
/// <value>The OAuth Client Scope.</value>
public virtual string{{^netStandard}}?{{/netStandard}} OAuthScope { get; set; }
public virtual string{{nrt?}} OAuthScope { get; set; }

/// <summary>
/// Gets or sets the flow for OAuth2 authentication.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace {{packageName}}.Client
/// Gets the OAuth token scope.
/// </summary>
/// <value>OAuth Token scope.</value>
string{{^netStandard}}?{{/netStandard}} OAuthScope { get; }
string{{nrt?}} OAuthScope { get; }

/// <summary>
/// Gets the OAuth flow.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace {{packageName}}.Client.Auth
readonly string _tokenUrl;
readonly string _clientId;
readonly string _clientSecret;
readonly string{{^netStandard}}?{{/netStandard}} _scope;
readonly string{{nrt?}} _scope;
readonly string _grantType;
readonly JsonSerializerSettings _serializerSettings;
readonly IReadableConfiguration _configuration;
Expand All @@ -28,7 +28,7 @@ namespace {{packageName}}.Client.Auth
string tokenUrl,
string clientId,
string clientSecret,
string{{^netStandard}}?{{/netStandard}} scope,
string{{nrt?}} scope,
OAuthFlow? flow,
JsonSerializerSettings serializerSettings,
IReadableConfiguration configuration) : base("")
Expand Down

0 comments on commit 90c15a7

Please sign in to comment.