This commit is contained in:
Dave Curylo 2021-02-10 10:06:41 -05:00
Родитель 1280de52f3
Коммит d5c7c240b8
13 изменённых файлов: 18 добавлений и 18 удалений

Просмотреть файл

@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
#
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AzureTableArchive", "AzureTableArchive\AzureTableArchive.fsproj", "{A295CD96-7607-46DA-9C43-7E81DFD0309E}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AzureTableArchiver", "AzureTableArchiver\AzureTableArchiver.fsproj", "{A295CD96-7607-46DA-9C43-7E81DFD0309E}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AzureTableArchiveTests", "AzureTableArchiveTests\AzureTableArchiveTests.fsproj", "{F0368061-B1F5-4BA3-BDE8-D77433F23EBB}"
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AzureTableArchiverTests", "AzureTableArchiverTests\AzureTableArchiverTests.fsproj", "{F0368061-B1F5-4BA3-BDE8-D77433F23EBB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Просмотреть файл

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.1</TargetFrameworks>
<RootNamespace>StorageTableBackup</RootNamespace>
<RootNamespace>AzureTableArchiver</RootNamespace>
</PropertyGroup>
<ItemGroup>

Просмотреть файл

@ -1,4 +1,4 @@
namespace AzureTableArchive
namespace AzureTableArchiver
open System
open System.IO

Просмотреть файл

@ -1,4 +1,4 @@
namespace AzureTableArchive
namespace AzureTableArchiver
open System
open Microsoft.Azure.Storage.Blob

Просмотреть файл

@ -1,4 +1,4 @@
namespace AzureTableArchive
namespace AzureTableArchiver
type TableName = string
/// Lists the storage tables in a storage account.

Просмотреть файл

@ -1,4 +1,4 @@
namespace AzureTableArchive
namespace AzureTableArchiver
open System
open Microsoft.Azure.Cosmos.Table

Просмотреть файл

@ -1,4 +1,4 @@
namespace AzureTableArchive
namespace AzureTableArchiver
open Microsoft.Azure.Cosmos.Table
open EntitySerialization

Просмотреть файл

@ -4,7 +4,7 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<GenerateProgramFile>false</GenerateProgramFile>
<RootNamespace>StorageTableBackupTests</RootNamespace>
<RootNamespace>AzureTableArchiverTests</RootNamespace>
</PropertyGroup>
<ItemGroup>
@ -22,6 +22,6 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AzureTableArchive\AzureTableArchive.fsproj" />
<ProjectReference Include="..\AzureTableArchiver\AzureTableArchiver.fsproj" />
</ItemGroup>
</Project>

Просмотреть файл

@ -7,7 +7,7 @@ open Microsoft.Azure.Cosmos.Table
open Microsoft.Azure.Storage.Blob
open Microsoft.Azure.Storage.DataMovement
open Moq
open AzureTableArchive
open AzureTableArchiver
// TableResultSegment is sealed with internal setters - unmockable - using reflection to make instances for mocks.
let createTableResultSegment (cloudTables:seq<CloudTable>) =

Просмотреть файл

@ -3,7 +3,7 @@ module EntitySerializationTests
open System
open Expecto
open Microsoft.Azure.Cosmos.Table
open AzureTableArchive
open AzureTableArchiver
open EntitySerialization
[<Tests>]

Просмотреть файл

@ -1,4 +1,4 @@
module AzureTableArchiveTests
module AzureTableArchiverTests
open Expecto
[<EntryPoint>]

Просмотреть файл

@ -1,7 +1,7 @@
AzureTableArchive
=================
AzureTableArchiver
==================
The AzureTableArchive library is intended for creating archives of Azure Storage Tables from Storage Accounts or Cosmos DB and storing them in Azure Storage Blob containers. Because multiple archives may be retained, previous copies of table records are available to restore from the various points of time when archives are created.
The AzureTableArchiver is intended for creating archives of Azure Storage Tables from Storage Accounts or Cosmos DB and storing them in Azure Storage Blob containers. Because multiple archives may be retained, previous copies of table records are available to restore from the various points of time when archives are created.
Archives are not pruned by this library - it's recommended to enable blob expiration to remove old archives automatically.

Просмотреть файл

@ -1,7 +1,7 @@
AzureTableArchive Development Guide
Development Guide
========
The AzureTableArchive library is broken into several modules.
The AzureTableArchiver is broken into several modules.
### Domain.fs
The Domain module contains general type definitions for both structure and behavior.