mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 03:47:27 +00:00
22 lines
411 B
C#
22 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.IO;
|
|
using System.IO.Compression;
|
|
|
|
namespace DependencyPacker
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
if(File.Exists("Dependencies.zip")) {
|
|
File.Delete("Dependencies.zip");
|
|
}
|
|
ZipFile.CreateFromDirectory("Dependencies", "Dependencies.zip");
|
|
}
|
|
}
|
|
}
|