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 am trying a basic sample inspired from the doc, but getting the following exception. What am I doing wrong?
"Could not load file or assembly 'System.Threading.Tasks.Extensions, Version=4.2.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system cannot find the file specified."
private static void CreateArchive(string projectFolder)
{
var tarPath = Path.Combine(projectFolder, "result.tar.gz");
using (var outStream = File.Create(tarPath))
using (var gzoStream = new GZipOutputStream(outStream))
using (var tarArchive = TarArchive.CreateOutputTarArchive(gzoStream))
{
tarArchive.RootPath = projectFolder.Replace('\\', '/');
foreach (var file in outputFiles)
{
var entry = TarEntry.CreateEntryFromFile(file);
entry.Name = Path.GetFileName(file);
tarArchive.WriteEntry(entry, true);
}
tarArchive.Close();
}
}
I installed the following Nuget packages, I'm not seeing a version 4.2.0.0 available ...
Reproduction Code
No response
Steps to reproduce
build and run attached code
Expected behavior
valid tar.gz archive produced
Operating System
Windows
Framework Version
No response
Tags
Tar
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
Greeting Folks,
I am trying a basic sample inspired from the doc, but getting the following exception. What am I doing wrong?
"Could not load file or assembly 'System.Threading.Tasks.Extensions, Version=4.2.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The system cannot find the file specified."
I installed the following Nuget packages, I'm not seeing a version
4.2.0.0
available ...Reproduction Code
No response
Steps to reproduce
build and run attached code
Expected behavior
valid tar.gz archive produced
Operating System
Windows
Framework Version
No response
Tags
Tar
Additional context
No response
The text was updated successfully, but these errors were encountered: