Skip to content

Commit f2717e7

Browse files
committed
Releasing 3.3.0
1 parent aebecfb commit f2717e7

File tree

3 files changed

+13
-36
lines changed

3 files changed

+13
-36
lines changed

package.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>3.2.0</Version>
4+
<Version>3.3.0</Version>
55
<PackageReleaseNotes>This package is distributed as .NET Standard 1.0, 2.0, .Net Core 1.0 and .NET 4.0, 4.5, 4.7</PackageReleaseNotes>
66
</PropertyGroup>
77

src/Builder/IBuilderContext.cs

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,18 @@ public interface IBuilderContext
5858
/// </summary>
5959
IPolicySet Registration { get; }
6060

61+
/// <summary>
62+
/// Reference to Lifetime manager which requires recovery
63+
/// </summary>
64+
IRequiresRecovery RequiresRecovery { get; set; }
65+
66+
/// <summary>
67+
/// The set of policies that were passed into this context.
68+
/// </summary>
69+
/// <remarks>This returns the policies passed into the context.
70+
/// Policies added here will remain after buildup completes.</remarks>
71+
/// <value>The persistent policies for the current context.</value>
72+
IPolicyList PersistentPolicies { get; }
6173

6274
/// <summary>
6375
/// Gets the policies for the current context.
@@ -69,11 +81,6 @@ public interface IBuilderContext
6981
/// </value>
7082
IPolicyList Policies { get; }
7183

72-
/// <summary>
73-
/// Reference to Lifetime manager which requires recovery
74-
/// </summary>
75-
IRequiresRecovery RequiresRecovery { get; set; }
76-
7784
/// <summary>
7885
/// The current object being built up or torn down.
7986
/// </summary>

src/IContainerContext.cs

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)