├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CosmosGettingStartedDotnetCoreTutorial.sln ├── CosmosGettingStartedDotnetCoreTutorial ├── CosmosGettingStartedDotnetCoreTutorial.csproj ├── Family.cs └── Program.cs ├── LICENSE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CosmosGettingStartedDotnetCoreTutorial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CosmosGettingStartedDotnetCoreTutorial.sln -------------------------------------------------------------------------------- /CosmosGettingStartedDotnetCoreTutorial/CosmosGettingStartedDotnetCoreTutorial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CosmosGettingStartedDotnetCoreTutorial/CosmosGettingStartedDotnetCoreTutorial.csproj -------------------------------------------------------------------------------- /CosmosGettingStartedDotnetCoreTutorial/Family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CosmosGettingStartedDotnetCoreTutorial/Family.cs -------------------------------------------------------------------------------- /CosmosGettingStartedDotnetCoreTutorial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/CosmosGettingStartedDotnetCoreTutorial/Program.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/cosmos-dotnet-core-getting-started/HEAD/README.md --------------------------------------------------------------------------------