Skip to content

Commit 9962ee4

Browse files
committed
Updated documentation from placeholders to actual repo URL. Also fixed issue with code base in .NET 9 but GitHub pipelines only able to do 8 or lower. So moved project to 8 and adjusted all packages accordingly. Last Commit before publishing
1 parent 0b0405d commit 9962ee4

File tree

6 files changed

+18
-42
lines changed

6 files changed

+18
-42
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Thank you for your interest in contributing! This document provides guidelines a
2121

2222
### Setup
2323
```bash
24-
git clone https://github.com/yourusername/cosmos-to-sql-consoleapp.git
25-
cd cosmos-to-sql-consoleapp
24+
git clone https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool.git
25+
cd cosmosdb-to-sql-migration-tool
2626
dotnet restore
2727
dotnet build
2828
```

CosmosToSqlAssessment.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
@@ -13,13 +13,13 @@
1313
<PackageReference Include="ClosedXML" Version="0.105.0" />
1414
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
1515
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.53.0" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.8" />
17-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.8" />
18-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.8" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.8" />
20-
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.8" />
21-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.8" />
22-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.8" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
17+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
18+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
20+
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
21+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
22+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.1" />
2323
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2424
</ItemGroup>
2525

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cosmos DB to SQL Migration Assessment Tool
22

3-
[![Build Status](https://github.com/yourusername/cosmos-to-sql-consoleapp/workflows/Build/badge.svg)](https://github.com/yourusername/cosmos-to-sql-consoleapp/actions)
4-
[![CodeQL](https://github.com/yourusername/cosmos-to-sql-consoleapp/workflows/CodeQL/badge.svg)](https://github.com/yourusername/cosmos-to-sql-consoleapp/actions)
3+
[![Build Status](https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool/workflows/Build/badge.svg)](https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool/actions)
4+
[![CodeQL](https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool/workflows/CodeQL/badge.svg)](https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool/actions)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66
[![.NET 8.0](https://img.shields.io/badge/.NET-8.0-purple.svg)](https://dotnet.microsoft.com/)
77

@@ -21,7 +21,7 @@ A powerful C# console application for analyzing Azure Cosmos DB databases and ge
2121
## 🚀 Quick Start
2222

2323
### Option 1: Download Release (Recommended)
24-
1. Download the latest release from [GitHub Releases](https://github.com/yourusername/cosmos-to-sql-consoleapp/releases)
24+
1. Download the latest release from [GitHub Releases](https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool/releases)
2525
2. Extract the ZIP file for your platform (Windows, Linux, or macOS)
2626
3. Run the executable:
2727

@@ -35,8 +35,8 @@ A powerful C# console application for analyzing Azure Cosmos DB databases and ge
3535

3636
### Option 2: Build from Source
3737
```bash
38-
git clone https://github.com/yourusername/cosmos-to-sql-consoleapp.git
39-
cd cosmos-to-sql-consoleapp
38+
git clone https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool.git
39+
cd cosmosdb-to-sql-migration-tool
4040
dotnet build --configuration Release
4141
dotnet run -- --endpoint "https://your-cosmos-account.documents.azure.com:443/" --database "your-database" --output "./reports"
4242
```

Services/DataFactoryEstimateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ private Task<List<PipelineEstimate>> EstimatePipelinePerformanceAsync(
168168
var targetRegion = _configuration.GetValue<string>("DataFactory:TargetRegion", "East US");
169169

170170
// Apply regional latency factor
171-
var regionalLatencyFactor = sourceRegion.Equals(targetRegion, StringComparison.OrdinalIgnoreCase) ? 1.0 : 1.2;
171+
var regionalLatencyFactor = string.Equals(sourceRegion, targetRegion, StringComparison.OrdinalIgnoreCase) ? 1.0 : 1.2;
172172

173173
foreach (var container in cosmosAnalysis.Containers)
174174
{

cosmosdb-to-sql-migration-tool.sln

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Your Azure account needs specific permissions to access Cosmos DB and Azure Moni
2525
### 1. Clone the Repository
2626

2727
```bash
28-
git clone <your-repository-url>
29-
cd cosmos-to-sql-consoleapp
28+
git clone https://github.com/JoshLuedeman/cosmosdb-to-sql-migration-tool.git
29+
cd cosmosdb-to-sql-migration-tool
3030
```
3131

3232
### 2. Restore Dependencies

0 commit comments

Comments
 (0)