Skip to content

Commit 4b13db8

Browse files
committed
Updated to latest Cofoundry and updated DI method name changes.
1 parent 93b55bb commit 4b13db8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Cofoundry.Plugins.Azure/AzureDependencyRegistration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public void Register(IContainerRegister container)
1414
{
1515
if (container.Configuration.IsAzurePluginEnabled())
1616
{
17-
var delayedRegistrationOptions = RegistrationOptions.Override();
17+
var overrideOptions = RegistrationOptions.Override();
1818

1919
container
20-
.RegisterType<IFileStoreService, AzureBlobFileService>(delayedRegistrationOptions)
20+
.Register<IFileStoreService, AzureBlobFileService>(overrideOptions)
2121
;
2222
}
2323
}

src/Cofoundry.Plugins.Azure/Cofoundry.Plugins.Azure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Cofoundry.Domain" Version="0.2.0-beta0056" />
19+
<PackageReference Include="Cofoundry.Domain" Version="0.2.0-beta0098" />
2020
<PackageReference Include="WindowsAzure.Storage" Version="8.1.4" />
2121
</ItemGroup>
2222

0 commit comments

Comments
 (0)