Skip to content

Commit

Permalink
1.0.54.2 - Fixed 2 recommendations (AllColuments in Query) from certi…
Browse files Browse the repository at this point in the history
…fication process for Appsource.
  • Loading branch information
Demian Adolfo Raschkovan committed Feb 6, 2019
1 parent 7e4d658 commit dd9b6cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified msdyncrmWorkflowTools/.vs/msdyncrmWorkflowTools/v15/.suo
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected override void Execute(CodeActivityContext executionContext)
// main query returing users
QueryExpression userQuery = new QueryExpression("systemuser");
// take all columns
userQuery.ColumnSet = new ColumnSet(true);
userQuery.ColumnSet = new ColumnSet("systemuserid");
// this is the intersect condition
LinkEntity teamLink = new LinkEntity("systemuser", "teammembership", "systemuserid", "systemuserid", JoinOperator.Inner);
// this is the condition to use the specific Team
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected override void Execute(CodeActivityContext executionContext)
var query = new QueryExpression
{
EntityName = "listmember",
ColumnSet = new ColumnSet(true),
ColumnSet = new ColumnSet("entityid", "listid"),

Criteria =
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// Puede especificar todos los valores o usar los valores predeterminados (número de compilación y de revisión)
// usando el símbolo '*' como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.54.1")]
[assembly: AssemblyFileVersion("1.0.54.1")]
[assembly: AssemblyVersion("1.0.54.2")]
[assembly: AssemblyFileVersion("1.0.54.2")]

0 comments on commit dd9b6cb

Please sign in to comment.