From f667264372f28f69fff8db551a5f7662e94f1a32 Mon Sep 17 00:00:00 2001 From: Damian Goc <141324266+damiangoc-esky@users.noreply.github.com> Date: Tue, 11 Jun 2024 12:43:10 +0200 Subject: [PATCH] Set HashVersion of Experiment using Rule --- GrowthBook/GrowthBook.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GrowthBook/GrowthBook.cs b/GrowthBook/GrowthBook.cs index 482c483..cc794c9 100644 --- a/GrowthBook/GrowthBook.cs +++ b/GrowthBook/GrowthBook.cs @@ -246,7 +246,8 @@ public FeatureResult EvalFeature(string featureId) Name = rule.Name, Phase = rule.Phase, Seed = rule.Seed, - Filters = rule.Filters + Filters = rule.Filters, + HashVersion = rule.HashVersion }; var result = RunExperiment(experiment, featureId);