├── .gitattributes ├── .gitignore ├── DesktopGrabber.sln ├── DesktopGrabber ├── DesktopGrabber.csproj ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config └── LICENSE /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/.gitignore -------------------------------------------------------------------------------- /DesktopGrabber.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber.sln -------------------------------------------------------------------------------- /DesktopGrabber/DesktopGrabber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/DesktopGrabber.csproj -------------------------------------------------------------------------------- /DesktopGrabber/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/FodyWeavers.xml -------------------------------------------------------------------------------- /DesktopGrabber/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/FodyWeavers.xsd -------------------------------------------------------------------------------- /DesktopGrabber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/Program.cs -------------------------------------------------------------------------------- /DesktopGrabber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DesktopGrabber/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/app.config -------------------------------------------------------------------------------- /DesktopGrabber/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/DesktopGrabber/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYAN-x-CAT/DesktopGrabber/HEAD/LICENSE --------------------------------------------------------------------------------