├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── PasteIntoFile.sln ├── PasteIntoFile ├── App.config ├── PasteIntoFile.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── icon.ico ├── icon.png ├── menu.png └── screenshot.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/.gitignore -------------------------------------------------------------------------------- /PasteIntoFile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile.sln -------------------------------------------------------------------------------- /PasteIntoFile/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/App.config -------------------------------------------------------------------------------- /PasteIntoFile/PasteIntoFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/PasteIntoFile.csproj -------------------------------------------------------------------------------- /PasteIntoFile/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Program.cs -------------------------------------------------------------------------------- /PasteIntoFile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PasteIntoFile/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PasteIntoFile/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Properties/Resources.resx -------------------------------------------------------------------------------- /PasteIntoFile/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PasteIntoFile/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/Properties/Settings.settings -------------------------------------------------------------------------------- /PasteIntoFile/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/app.manifest -------------------------------------------------------------------------------- /PasteIntoFile/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/frmMain.Designer.cs -------------------------------------------------------------------------------- /PasteIntoFile/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/frmMain.cs -------------------------------------------------------------------------------- /PasteIntoFile/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/frmMain.resx -------------------------------------------------------------------------------- /PasteIntoFile/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/icon.ico -------------------------------------------------------------------------------- /PasteIntoFile/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/icon.png -------------------------------------------------------------------------------- /PasteIntoFile/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/menu.png -------------------------------------------------------------------------------- /PasteIntoFile/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/PasteIntoFile/screenshot.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EslaMx7/PasteIntoFile/HEAD/README.md --------------------------------------------------------------------------------