I want to make single exe file that will extract a Folder with a lot of stuff inside.
I want this exe to work on computers with .net 4.0
I was trying to decompress embedded zip archive with the folder, but it is not simple with .net 4.0
I want to make single exe file that will extract a Folder with a lot of stuff inside.
I want this exe to work on computers with .net 4.0
I was trying to decompress embedded zip archive with the folder, but it is not simple with .net 4.0
You should be able to do this by adding a .zip file to your C# installer project and setting its Build Action to "Embedded Resource." Then, your C# installer program would extract that file from itself using Assembly.GetManifestResourceStream, writing the contents of the stream to disk.