├── .gitignore ├── ChiseledSqlClient.sln ├── ChiseledSqlClient ├── ChiseledSqlClient.csproj └── Program.cs ├── Microsoft.Identity.Client ├── Microsoft.Identity.Client.csproj └── Stubs.cs ├── README.md └── results.svg /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | .vs/ 4 | .idea/ 5 | *.user -------------------------------------------------------------------------------- /ChiseledSqlClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/ChiseledSqlClient.sln -------------------------------------------------------------------------------- /ChiseledSqlClient/ChiseledSqlClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/ChiseledSqlClient/ChiseledSqlClient.csproj -------------------------------------------------------------------------------- /ChiseledSqlClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/ChiseledSqlClient/Program.cs -------------------------------------------------------------------------------- /Microsoft.Identity.Client/Microsoft.Identity.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/Microsoft.Identity.Client/Microsoft.Identity.Client.csproj -------------------------------------------------------------------------------- /Microsoft.Identity.Client/Stubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/Microsoft.Identity.Client/Stubs.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/README.md -------------------------------------------------------------------------------- /results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xced/ChiseledSqlClient/HEAD/results.svg --------------------------------------------------------------------------------