├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── App.config ├── LICENSE ├── Program.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── WinToLinux.csproj ├── WinToLinux.slnx ├── WtL.ico └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/App.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/README.md -------------------------------------------------------------------------------- /WinToLinux.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/WinToLinux.csproj -------------------------------------------------------------------------------- /WinToLinux.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/WinToLinux.slnx -------------------------------------------------------------------------------- /WtL.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/WtL.ico -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toxblh/WinToLinux/HEAD/app.manifest --------------------------------------------------------------------------------