├── .gitignore ├── FontAwesomeIcons.cs ├── LICENSE ├── Readme.md ├── fa2cs.sln └── fa2cs ├── CodeWriter.cs ├── Helpers ├── AssemblyHelper.cs ├── DotNetNameHelper.cs ├── OpenFileHelper.cs ├── ResourcesHelper.cs └── StringHelper.cs ├── MetaDataParser.cs ├── Models ├── Icon.cs ├── SemanticVersion.cs └── Style.cs ├── Program.cs ├── ReadmeWriter.cs ├── Resources ├── ClassTemplate.txt ├── PropertyTemplate.txt └── Readme.txt └── fa2cs.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/.gitignore -------------------------------------------------------------------------------- /FontAwesomeIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/FontAwesomeIcons.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/Readme.md -------------------------------------------------------------------------------- /fa2cs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs.sln -------------------------------------------------------------------------------- /fa2cs/CodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/CodeWriter.cs -------------------------------------------------------------------------------- /fa2cs/Helpers/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Helpers/AssemblyHelper.cs -------------------------------------------------------------------------------- /fa2cs/Helpers/DotNetNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Helpers/DotNetNameHelper.cs -------------------------------------------------------------------------------- /fa2cs/Helpers/OpenFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Helpers/OpenFileHelper.cs -------------------------------------------------------------------------------- /fa2cs/Helpers/ResourcesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Helpers/ResourcesHelper.cs -------------------------------------------------------------------------------- /fa2cs/Helpers/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Helpers/StringHelper.cs -------------------------------------------------------------------------------- /fa2cs/MetaDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/MetaDataParser.cs -------------------------------------------------------------------------------- /fa2cs/Models/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Models/Icon.cs -------------------------------------------------------------------------------- /fa2cs/Models/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Models/SemanticVersion.cs -------------------------------------------------------------------------------- /fa2cs/Models/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Models/Style.cs -------------------------------------------------------------------------------- /fa2cs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Program.cs -------------------------------------------------------------------------------- /fa2cs/ReadmeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/ReadmeWriter.cs -------------------------------------------------------------------------------- /fa2cs/Resources/ClassTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Resources/ClassTemplate.txt -------------------------------------------------------------------------------- /fa2cs/Resources/PropertyTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Resources/PropertyTemplate.txt -------------------------------------------------------------------------------- /fa2cs/Resources/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/Resources/Readme.txt -------------------------------------------------------------------------------- /fa2cs/fa2cs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewrdev/fa2cs/HEAD/fa2cs/fa2cs.csproj --------------------------------------------------------------------------------