├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SharpFruit.sln └── SharpFruit ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SharpFruit.csproj ├── app.config └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/README.md -------------------------------------------------------------------------------- /SharpFruit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit.sln -------------------------------------------------------------------------------- /SharpFruit/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/FodyWeavers.xml -------------------------------------------------------------------------------- /SharpFruit/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/FodyWeavers.xsd -------------------------------------------------------------------------------- /SharpFruit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/Program.cs -------------------------------------------------------------------------------- /SharpFruit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpFruit/SharpFruit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/SharpFruit.csproj -------------------------------------------------------------------------------- /SharpFruit/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/app.config -------------------------------------------------------------------------------- /SharpFruit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/SharpFruit/HEAD/SharpFruit/packages.config --------------------------------------------------------------------------------