mmajcica / DeploySsrs

Build-Release task for VSTS/TFS that manages Microsoft's SQL Server Reporting Services
MIT License
21 stars 21 forks source link

Special characters show up wrong in the deployed #15

Closed Sjors-Boom closed 5 years ago

Sjors-Boom commented 5 years ago

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 "č"

Sjors-Boom commented 5 years ago

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.

mmajcica commented 5 years ago

Solved in https://github.com/mmajcica/DeploySsrs/pull/16