Downgrade dependencies

This commit is contained in:
Sipke Schoorstra 2019-10-25 17:55:39 +02:00
parent 42ddf7ac49
commit 99ee3cacce
3 changed files with 6 additions and 4 deletions

View file

@ -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>

View file

@ -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();
}
}

View file

@ -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}\"`"));
}
}
}