Skip to content

Commit cdd2c73

Browse files
authored
Merge branch 'main' into v-next
2 parents a336d07 + 133288f commit cdd2c73

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/how-to-migrate-data.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ In the resources deployed to Azure, there will be 2 storage accounts. One for th
44

55
The easiest way to migrate your data between accounts or from an earlier version of AzUrlShortener is to use the **Azure Storage Explorer** to export the data as CSV files and use the TinyBlazorAdmin to import the files.
66

7-
87
Azure Storage Explorer is a free tool to manage your Azure cloud storage resources (aka your short URLs) from your desktop. It’s a cross-platform and can be downloaded [here](https://azure.microsoft.com/en-us/products/storage/storage-explorer/).
98

109
In the resources deployed to Azure there will be 2 storage accounts. One for the redirect service (azfunc-light) and one acting as the data store. That last one is the one you want to use for the data migration. The name of that storage account should start wirh `urldata`.
@@ -27,4 +26,3 @@ Here are the settings to use when importing using Azure Storage Explorer:
2726
- Uncheck the checkbox *Ignore empty string values*.
2827

2928
![Import settings when using Azure Storage Explorer](../images/import_using_azStorage-explorer.png)
30-

src/Core/Cloud5mins.ShortenerTools.Core.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@
1010
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.5" />
1111

1212
<PackageReference Include="CsvHelper" Version="33.0.1" />
13-
1413
</ItemGroup>
1514
</Project>

src/Core/Domain/ShortUrlEntity.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
using Azure.Data.Tables;
33
using System.Runtime.Serialization;
44
using System.Text.Json;
5+
using Azure;
6+
using Azure.Data.Tables;
7+
58

69
namespace Cloud5mins.ShortenerTools.Core.Domain
710
{

0 commit comments

Comments
 (0)