├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md └── src ├── Microsoft.Azure.Cosmos.Samples.Bulk.csproj └── Program.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/Microsoft.Azure.Cosmos.Samples.Bulk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/src/Microsoft.Azure.Cosmos.Samples.Bulk.csproj -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-bulk-import-throughput-optimizer/HEAD/src/Program.cs --------------------------------------------------------------------------------