├── .gitattributes ├── .gitignore ├── API ├── .editorconfig ├── .eslintrc.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── controllers │ │ │ ├── questions.js │ │ │ └── user.js │ │ ├── infra │ │ │ ├── QuestionsDao.js │ │ │ ├── UserDAO.js │ │ │ ├── connectionFactory.js │ │ │ └── createTables.js │ │ ├── logs │ │ │ └── api.log │ │ └── models │ │ │ ├── categories.js │ │ │ ├── question.js │ │ │ └── user.js │ ├── config │ │ ├── custom-express.js │ │ └── logger.js │ └── server.js ├── util │ ├── question_example.json │ └── tables │ │ ├── questions.sql │ │ └── users.sql └── yarn.lock ├── GUI ├── GUI.sln ├── GUI │ ├── App.config │ ├── Entrar.Designer.cs │ ├── Entrar.cs │ ├── Entrar.resx │ ├── EscolherCategoria.Designer.cs │ ├── EscolherCategoria.cs │ ├── EscolherCategoria.resx │ ├── Font │ │ ├── FIRACODE-BOLD.TTF │ │ ├── FIRACODE-LIGHT.TTF │ │ ├── FIRACODE-MEDIUM.TTF │ │ ├── FIRACODE-REGULAR.TTF │ │ └── FIRACODE-RETINA.TTF │ ├── GUI.csproj │ ├── Game.Designer.cs │ ├── Game.cs │ ├── Game.resx │ ├── Images │ │ ├── VeJVd-OW_400x400.ico │ │ ├── at.png │ │ ├── key(1).png │ │ ├── key.png │ │ ├── man-user(1).png │ │ ├── man-user.png │ │ ├── minimize.png │ │ ├── settings.png │ │ ├── unnamed.png │ │ ├── vintage-key-outline.png │ │ └── índice.jpg │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Questions.Designer.cs │ ├── Questions.cs │ ├── Questions.resx │ ├── Registrar.Designer.cs │ ├── Registrar.cs │ ├── Registrar.resx │ ├── models │ │ ├── Question.cs │ │ └── User.cs │ ├── packages.config │ └── services │ │ ├── MessageBoxService.cs │ │ ├── QuestionService.cs │ │ ├── RandomNumbers.cs │ │ └── UserService.cs └── packages │ ├── Newtonsoft.Json.12.0.2 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.2.nupkg │ └── lib │ │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── RestSharp.106.6.9 │ ├── .signature.p7s │ ├── RestSharp.106.6.9.nupkg │ └── lib │ ├── net452 │ ├── RestSharp.dll │ └── RestSharp.xml │ └── netstandard2.0 │ ├── RestSharp.dll │ └── RestSharp.xml └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/.gitignore -------------------------------------------------------------------------------- /API/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/.editorconfig -------------------------------------------------------------------------------- /API/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/.eslintrc.json -------------------------------------------------------------------------------- /API/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/package-lock.json -------------------------------------------------------------------------------- /API/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/package.json -------------------------------------------------------------------------------- /API/src/app/controllers/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/controllers/questions.js -------------------------------------------------------------------------------- /API/src/app/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/controllers/user.js -------------------------------------------------------------------------------- /API/src/app/infra/QuestionsDao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/infra/QuestionsDao.js -------------------------------------------------------------------------------- /API/src/app/infra/UserDAO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/infra/UserDAO.js -------------------------------------------------------------------------------- /API/src/app/infra/connectionFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/infra/connectionFactory.js -------------------------------------------------------------------------------- /API/src/app/infra/createTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/infra/createTables.js -------------------------------------------------------------------------------- /API/src/app/logs/api.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/logs/api.log -------------------------------------------------------------------------------- /API/src/app/models/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/models/categories.js -------------------------------------------------------------------------------- /API/src/app/models/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/models/question.js -------------------------------------------------------------------------------- /API/src/app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/app/models/user.js -------------------------------------------------------------------------------- /API/src/config/custom-express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/config/custom-express.js -------------------------------------------------------------------------------- /API/src/config/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/config/logger.js -------------------------------------------------------------------------------- /API/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/src/server.js -------------------------------------------------------------------------------- /API/util/question_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/util/question_example.json -------------------------------------------------------------------------------- /API/util/tables/questions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/util/tables/questions.sql -------------------------------------------------------------------------------- /API/util/tables/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/util/tables/users.sql -------------------------------------------------------------------------------- /API/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/API/yarn.lock -------------------------------------------------------------------------------- /GUI/GUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI.sln -------------------------------------------------------------------------------- /GUI/GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/App.config -------------------------------------------------------------------------------- /GUI/GUI/Entrar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Entrar.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Entrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Entrar.cs -------------------------------------------------------------------------------- /GUI/GUI/Entrar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Entrar.resx -------------------------------------------------------------------------------- /GUI/GUI/EscolherCategoria.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/EscolherCategoria.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/EscolherCategoria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/EscolherCategoria.cs -------------------------------------------------------------------------------- /GUI/GUI/EscolherCategoria.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/EscolherCategoria.resx -------------------------------------------------------------------------------- /GUI/GUI/Font/FIRACODE-BOLD.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Font/FIRACODE-BOLD.TTF -------------------------------------------------------------------------------- /GUI/GUI/Font/FIRACODE-LIGHT.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Font/FIRACODE-LIGHT.TTF -------------------------------------------------------------------------------- /GUI/GUI/Font/FIRACODE-MEDIUM.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Font/FIRACODE-MEDIUM.TTF -------------------------------------------------------------------------------- /GUI/GUI/Font/FIRACODE-REGULAR.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Font/FIRACODE-REGULAR.TTF -------------------------------------------------------------------------------- /GUI/GUI/Font/FIRACODE-RETINA.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Font/FIRACODE-RETINA.TTF -------------------------------------------------------------------------------- /GUI/GUI/GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/GUI.csproj -------------------------------------------------------------------------------- /GUI/GUI/Game.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Game.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Game.cs -------------------------------------------------------------------------------- /GUI/GUI/Game.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Game.resx -------------------------------------------------------------------------------- /GUI/GUI/Images/VeJVd-OW_400x400.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/VeJVd-OW_400x400.ico -------------------------------------------------------------------------------- /GUI/GUI/Images/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/at.png -------------------------------------------------------------------------------- /GUI/GUI/Images/key(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/key(1).png -------------------------------------------------------------------------------- /GUI/GUI/Images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/key.png -------------------------------------------------------------------------------- /GUI/GUI/Images/man-user(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/man-user(1).png -------------------------------------------------------------------------------- /GUI/GUI/Images/man-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/man-user.png -------------------------------------------------------------------------------- /GUI/GUI/Images/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/minimize.png -------------------------------------------------------------------------------- /GUI/GUI/Images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/settings.png -------------------------------------------------------------------------------- /GUI/GUI/Images/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/unnamed.png -------------------------------------------------------------------------------- /GUI/GUI/Images/vintage-key-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/vintage-key-outline.png -------------------------------------------------------------------------------- /GUI/GUI/Images/índice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Images/índice.jpg -------------------------------------------------------------------------------- /GUI/GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Program.cs -------------------------------------------------------------------------------- /GUI/GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GUI/GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /GUI/GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /GUI/GUI/Questions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Questions.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Questions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Questions.cs -------------------------------------------------------------------------------- /GUI/GUI/Questions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Questions.resx -------------------------------------------------------------------------------- /GUI/GUI/Registrar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Registrar.Designer.cs -------------------------------------------------------------------------------- /GUI/GUI/Registrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Registrar.cs -------------------------------------------------------------------------------- /GUI/GUI/Registrar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/Registrar.resx -------------------------------------------------------------------------------- /GUI/GUI/models/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/models/Question.cs -------------------------------------------------------------------------------- /GUI/GUI/models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/models/User.cs -------------------------------------------------------------------------------- /GUI/GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/packages.config -------------------------------------------------------------------------------- /GUI/GUI/services/MessageBoxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/services/MessageBoxService.cs -------------------------------------------------------------------------------- /GUI/GUI/services/QuestionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/services/QuestionService.cs -------------------------------------------------------------------------------- /GUI/GUI/services/RandomNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/services/RandomNumbers.cs -------------------------------------------------------------------------------- /GUI/GUI/services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/GUI/services/UserService.cs -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/.signature.p7s -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/LICENSE.md -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/Newtonsoft.Json.12.0.2.nupkg -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/Newtonsoft.Json.12.0.2/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/.signature.p7s -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/RestSharp.106.6.9.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/RestSharp.106.6.9.nupkg -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/lib/net452/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/lib/net452/RestSharp.dll -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/lib/net452/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/lib/net452/RestSharp.xml -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/lib/netstandard2.0/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/lib/netstandard2.0/RestSharp.dll -------------------------------------------------------------------------------- /GUI/packages/RestSharp.106.6.9/lib/netstandard2.0/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/GUI/packages/RestSharp.106.6.9/lib/netstandard2.0/RestSharp.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopandolfo/quiz-game/HEAD/README.md --------------------------------------------------------------------------------