mmajcica / DeploySsrs

Build-Release task for VSTS/TFS that manages Microsoft's SQL Server Reporting Services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Special characters show up wrong in the deployed

Sjors-Boom opened this issue · comments

When we deploy a repport with special characters such as ě, ř and č.
They show up wrong in de deployed report.
When we download the repports they look like this "�"

I tracked it down to the following command:

[xml]$Definition = Get-Content -Path $RdlPath

Changed it to:

[xml]$Definition = Get-Content -Encoding UTF8 -Path $RdlPath

Now it works like a charm.

Solved in #16