Skip to content

Commit

Permalink
Typo error fix (#6620)
Browse files Browse the repository at this point in the history
  • Loading branch information
albator1932 authored and wing328 committed Oct 4, 2017
1 parent 90010da commit e49e7a0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ public void processOpts() {
setTargetFrameworkNuget("uwp");
setSupportsAsync(Boolean.TRUE);
setSupportsUWP(Boolean.TRUE);
additionalProperties.put("supportsAsync", this.supportsUWP);
additionalProperties.put("supportsUWP", this.supportsAsync);
additionalProperties.put("supportsAsync", this.supportsAsync);
additionalProperties.put("supportsUWP", this.supportsUWP);

} else {
setTargetFrameworkNuget("net45");
Expand Down

0 comments on commit e49e7a0

Please sign in to comment.