Skip to content

Commit

Permalink
Releasing 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ENikS committed Feb 28, 2018
1 parent aebecfb commit f2717e7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>3.2.0</Version>
<Version>3.3.0</Version>
<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>
</PropertyGroup>

Expand Down
17 changes: 12 additions & 5 deletions src/Builder/IBuilderContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,18 @@ public interface IBuilderContext
/// </summary>
IPolicySet Registration { get; }

/// <summary>
/// Reference to Lifetime manager which requires recovery
/// </summary>
IRequiresRecovery RequiresRecovery { get; set; }

/// <summary>
/// The set of policies that were passed into this context.
/// </summary>
/// <remarks>This returns the policies passed into the context.
/// Policies added here will remain after buildup completes.</remarks>
/// <value>The persistent policies for the current context.</value>
IPolicyList PersistentPolicies { get; }

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

/// <summary>
/// Reference to Lifetime manager which requires recovery
/// </summary>
IRequiresRecovery RequiresRecovery { get; set; }

/// <summary>
/// The current object being built up or torn down.
/// </summary>
Expand Down
30 changes: 0 additions & 30 deletions src/IContainerContext.cs

This file was deleted.

0 comments on commit f2717e7

Please sign in to comment.