Skip to content

Commit

Permalink
Do not ToLower package IDs for the store artifact xml
Browse files Browse the repository at this point in the history
  • Loading branch information
dasMulli committed Aug 15, 2017
1 parent 7a22b13 commit cfcbd81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ protected override void ExecuteCore()
TaskItem item = new TaskItem(resolvedAssembly.SourcePath);
item.SetMetadata("DestinationSubPath", resolvedAssembly.DestinationSubPath);
item.SetMetadata("AssetType", resolvedAssembly.Asset.ToString().ToLower());
item.SetMetadata(MetadataKeys.PackageName, resolvedAssembly.Package.Id.ToString().ToLower());
item.SetMetadata(MetadataKeys.PackageName, resolvedAssembly.Package.Id.ToString());
item.SetMetadata(MetadataKeys.PackageVersion, resolvedAssembly.Package.Version.ToString().ToLower());
_assembliesToPublish.Add(item);
}
Expand Down

0 comments on commit cfcbd81

Please sign in to comment.