Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ namespace Octopus.Server.Extensibility.Authentication.UsernamePassword.Configura
{
class UsernamePasswordConfigureCommands : IContributeToConfigureCommand
{
readonly ILog log;
readonly ISystemLog log;
readonly Lazy<IUsernamePasswordConfigurationStore> configurationStore;

public UsernamePasswordConfigureCommands(
ILog log,
ISystemLog log,
Lazy<IUsernamePasswordConfigurationStore> configurationStore)
{
this.log = log;
Expand Down
4 changes: 2 additions & 2 deletions source/Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<ItemGroup>
<!-- These packages are copied to the output directory during the build process -->
<PackageReference Include="Octopus.Configuration" Version="3.0.0" />
<PackageReference Include="Octopus.Diagnostics" Version="1.3.5" />
<PackageReference Include="Octopus.Server.Extensibility" Version="10.0.4" />
<PackageReference Include="Octopus.Diagnostics" Version="2.1.0" />
<PackageReference Include="Octopus.Server.Extensibility" Version="13.0.0" />
<PackageReference Include="Octopus.Server.Extensibility.Authentication" Version="10.0.1" />
</ItemGroup>

Expand Down