├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── add--library-framework-tool-link-.md │ └── custom.md ├── .gitignore ├── .travis.yml ├── Program.cs ├── README.md └── contributing.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Correia-jpv -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add--library-framework-tool-link-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/.github/ISSUE_TEMPLATE/add--library-framework-tool-link-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/.travis.yml -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Correia-jpv/fucking-awesome-dotnet-core/HEAD/contributing.md --------------------------------------------------------------------------------