Skip to content

Commit d89ea4f

Browse files
committed
Change the name to be consistent and use Desktop
1 parent 92b9b0e commit d89ea4f

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Contributing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- omit in toc -->
2-
# Contributing to Azure Cosmos DB Data Migration Desktop Tool
2+
# Contributing to Azure Cosmos DB Desktop Data Migration Tool
33

44
First off, thanks for taking the time to contribute! ❤️
55

@@ -24,7 +24,7 @@ All types of contributions are encouraged and valued. See the [Table of Contents
2424
## Code of Conduct
2525

2626
This project and everyone participating in it is governed by the
27-
[Azure Cosmos DB Data Migration Desktop Tool Code of Conduct](https://github.com/AzureCosmosDB/data-migration-desktop-toolblob/master/CODE_OF_CONDUCT.md).
27+
[Azure Cosmos DB Desktop Data Migration Tool Code of Conduct](https://github.com/AzureCosmosDB/data-migration-desktop-toolblob/master/CODE_OF_CONDUCT.md).
2828
By participating, you are expected to uphold this code. Please report unacceptable behavior
2929
to <carey.payette@gmail.com>.
3030

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure Cosmos DB data migration tool
1+
# Azure Cosmos DB Desktop Data Migration Tool
22

33
> **PLEASE NOTE**
44
>
5-
> The Azure Cosmos DB data migration tool is undergoing a full refactor to restructure the project to accomplish the following:
5+
> The Azure Cosmos DB Desktop Data Migration Tool is undergoing a full refactor to restructure the project to accomplish the following:
66
>
77
> - Provide a base cross-platform CLI that is lightweight and serves as the base (core) executable for hosting extensions
88
> - The extensible framework enables the community to add source and destination targets without modifying the core executable
@@ -14,9 +14,9 @@ To access the archived version of the tool, navigate to the [**Archive branch**]
1414

1515
---
1616

17-
- [Azure Cosmos DB data migration tool](#azure-cosmos-db-data-migration-tool)
18-
- [Cosmos DB data migration tool architecture](#cosmos-db-data-migration-tool-architecture)
19-
- [Cosmos DB project structure](#cosmos-db-project-structure)
17+
- [Azure Cosmos DB Desktop Data Migration Tool](#azure-cosmos-db-desktop-data-migration-tool)
18+
- [Architecture](#Azure-Cosmos-DB-Desktop-Data-Migration-Tool-architecture)
19+
- [Project Structure](#cosmos-db-project-structure)
2020
- [Getting Started](#getting-started)
2121
- [Clone the source code repository](#clone-the-source-code-repository)
2222
- [Build the solution](#build-the-solution)
@@ -30,13 +30,13 @@ To access the archived version of the tool, navigate to the [**Archive branch**]
3030
- [Extension documentation](#extension-documentation)
3131

3232

33-
## Cosmos DB data migration tool architecture
33+
## Architecture
3434

35-
The Cosmos DB Data Migration Tool is a lightweight executable that leverages the [Managed Extensibility Framework (MEF)](https://docs.microsoft.com/en-us/dotnet/framework/mef/). MEF enables decoupled implementation of the core project and its extensions. The core application is a command-line executable responsible for composing the required extensions at runtime by automatically loading them from the Extensions folder of the application. An Extension is a class library that includes the implementation of a System as a Source and (optionally) Sink for data transfer. The core application project does not contain direct references to any extension implementation. Instead, these projects share a common interface.
35+
The Azure Cosmos DB Desktop Data Migration Tool is a lightweight executable that leverages the [Managed Extensibility Framework (MEF)](https://docs.microsoft.com/en-us/dotnet/framework/mef/). MEF enables decoupled implementation of the core project and its extensions. The core application is a command-line executable responsible for composing the required extensions at runtime by automatically loading them from the Extensions folder of the application. An Extension is a class library that includes the implementation of a System as a Source and (optionally) Sink for data transfer. The core application project does not contain direct references to any extension implementation. Instead, these projects share a common interface.
3636

3737
![An extensions folder holds multiple extensions implementations.The application loads extensions from the extensions folder and executes functionality based on an interface implementation.](media/application_architecture.png "Application architecture")
3838

39-
## Cosmos DB project structure
39+
## Project Structure
4040

4141
The Cosmos DB Data Migration Tool core project is a C# command-line executable. The core application serves as the composition container for the required Source and Sink extensions. Therefore, the application user needs to put only the desired Extension class library assembly into the Extensions folder before running the application. In addition, the core project has a unit test project to exercise the application's behavior, whereas extension projects contain concrete integration tests that rely on external systems.
4242

@@ -51,7 +51,7 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
5151
1. From a command prompt, execute the following command in an empty working folder that will house the source code.
5252

5353
```shell
54-
git clone https://github.com/Azure/azure-documentdb-datamigrationtool.git
54+
git clone https://github.com/AzureCosmosDB/data-migration-desktop-tool.git
5555
```
5656

5757
### Build the solution
@@ -62,7 +62,7 @@ git clone https://github.com/Azure/azure-documentdb-datamigrationtool.git
6262

6363
## Tutorial: JSON to Cosmos DB migration
6464

65-
This tutorial outlines how to use the Cosmos DB Data Migration tool to move JSON data to Azure Cosmos DB. This tutorial uses the Azure Cosmos DB Emulator.
65+
This tutorial outlines how to use the Azure Cosmos DB Desktop Data Migration Tool to move JSON data to Azure Cosmos DB. This tutorial uses the Azure Cosmos DB Emulator.
6666

6767
### Tutorial Software prerequisites
6868

@@ -198,7 +198,7 @@ This tutorial outlines how to use the Cosmos DB Data Migration tool to move JSON
198198

199199
Multiple extensions are provided in this repository. Find the documentation for the usage and configuration of each using the links provided:
200200

201-
1. [Cosmos DB](Extensions/Cosmos/README.md)
201+
1. [Azure Cosmos DB](Extensions/Cosmos/README.md)
202202

203203
2. [Azure Table API](Extensions/AzureTableAPI/README.md)
204204

0 commit comments

Comments
 (0)