Downgrade dependencies
This commit is contained in:
parent
42ddf7ac49
commit
99ee3cacce
|
|
@ -19,12 +19,11 @@
|
|||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="LanguageExt.Core" Version="3.3.29" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="3.0.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.DataProtection" Version="2.2.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
||||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="3.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Http" Version="3.0.0" />
|
||||
<PackageReference Include="Microsoft.Extensions.Http" Version="2.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -39,6 +39,9 @@ namespace Sample17.Activities
|
|||
var person = new Person { FullName = name, Age = age };
|
||||
|
||||
Output["Person"] = person;
|
||||
Output["FullName"] = person.FullName;
|
||||
Output["Age"] = person.Age;
|
||||
|
||||
return Done();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ namespace Sample17
|
|||
x.VariableName = "Age";
|
||||
x.ValueExpression = new JavaScriptExpression<int>("CreatePerson.Person.Age");
|
||||
})
|
||||
.Then<WriteLine>(x => x.TextExpression = new JavaScriptExpression<string>("`A new person was created with name \"${Person.FullName}\" and age \"${Age}\"`"));
|
||||
.Then<WriteLine>(x => x.TextExpression = new JavaScriptExpression<string>("`A new person was created with name \"${Person.FullName}\" and age \"${CreatePerson.Age}\"`"));
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue