We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to zip files which names contains accentented characters. The file name within the zip file will be changed.
Build project:
<?xml version="1.0" encoding="utf-8" ?> <Project DefaultTargets="CompressFiles" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/> <Target Name="CompressFiles" > <ItemGroup> <FilesToCompress Include="Files\**\*.*" /> </ItemGroup> <Zip Files="@(FilesToCompress)" WorkingDirectory="Files" ZipFileName="Result.zip" /> </Target> </Project>
Files attached: AccentError.zip
The text was updated successfully, but these errors were encountered:
Try to use https://docs.microsoft.com/en-us/visualstudio/msbuild/zipdirectory-task from standard MSBuild tasks
Sorry, something went wrong.
No branches or pull requests
I want to zip files which names contains accentented characters. The file name within the zip file will be changed.
Examples
Build project:
Files attached:
AccentError.zip
Example 1
Example 2
The text was updated successfully, but these errors were encountered: