You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently upgraded from 0.1.84 to the latest version of this library. I am running the following to create a simple tar.gz:
<Target Name="BuildDBITarTest" AfterTargets="Build">
<Message Text="Creating Tar" Importance="high" />
<!-- Added @(Content) below as it is required in new versions -->
<TarballTask PublishDir="C:\temp\zip" TarballPath="C:\temp\tarballtest.tar.gz" Content="@(Content)" />
</Target>
The C:\temp\zip folder just contains a simple file (somefile.txt). When the tarball is built it appends a . before the name of the file changing the files name (.somefile.txt). Is there another way around this? I don't want the filename to change.
The text was updated successfully, but these errors were encountered:
Hello,
I recently upgraded from 0.1.84 to the latest version of this library. I am running the following to create a simple tar.gz:
The C:\temp\zip folder just contains a simple file (somefile.txt). When the tarball is built it appends a . before the name of the file changing the files name (.somefile.txt). Is there another way around this? I don't want the filename to change.
The text was updated successfully, but these errors were encountered: