Skip to content

Commit

Permalink
Switched to use ISBM Client Adapter authentication properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
claire-wong committed Jan 5, 2024
1 parent 0631783 commit c485f32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.2.10</Version>
<Version>6.2.14</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ private async Task SetConfigurations()
_authentication = (Boolean)JObjectConfigs["authentication"];
if (_authentication == true)
{
_username = JObjectConfigs["userName"].ToString();
_password = JObjectConfigs["password"].ToString();
_myProviderPublicationService.Credential.Username = JObjectConfigs["userName"].ToString();
_myProviderPublicationService.Credential.Password = JObjectConfigs["password"].ToString();
}
}

Expand Down

0 comments on commit c485f32

Please sign in to comment.