Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ContainerBuilder : Adds public Constructor to create ContainerBuilder instance. #2241

Merged
merged 7 commits into from
Mar 22, 2021
Prev Previous commit
Next Next commit
Update ContainerBuilder.cs
  • Loading branch information
kr-santosh committed Feb 19, 2021
commit e3c9abd352459232ff6bdaf6de24b206b2e75976
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,7 @@ private void AddConflictResolution(ConflictResolutionPolicy conflictResolutionPo
if (conflictResolutionPolicy.Mode == ConflictResolutionMode.Custom
&& !string.IsNullOrEmpty(conflictResolutionPolicy.ResolutionProcedure))
{
if (this.clientContext != null)
{
this.clientContext.ValidateResource(conflictResolutionPolicy.ResolutionProcedure);
}

this.clientContext.ValidateResource(conflictResolutionPolicy.ResolutionProcedure);
conflictResolutionPolicy.ResolutionProcedure = UriFactory.CreateStoredProcedureUri(this.containerUri.ToString(), conflictResolutionPolicy.ResolutionProcedure).ToString();
}

Expand Down