-
Notifications
You must be signed in to change notification settings - Fork 6
/
AzureTableBackupRestore.csproj
57 lines (49 loc) · 2.6 KB
/
AzureTableBackupRestore.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>TheByteStuff.AzureTableBackupRestore.CommandLineTool</StartupObject>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>
DotNet Tools command line implementation for backup, copy, delete and restore of Azure tables to/from local file or Azure blob storage using TheByteStuff.AzureTableUtilities found on NuGet: https://www.nuget.org/packages/TheByteStuff.AzureTableUtilities/
Backup/Copy/Delete/Restore parameters can be stored in a settings file (appsettings.json) or passed on the command line.
Filters need to be specified in the settings file.
Tool Command Name is registered with the name "aztbu" as in "Azure Table Utilities".
for help, aztbu -h</Description>
<Copyright>2020-2023</Copyright>
<PackageProjectUrl>https://github.com/TheByteStuff/AzureTableBackupRestore</PackageProjectUrl>
<RepositoryUrl>https://github.com/TheByteStuff/AzureTableBackupRestore</RepositoryUrl>
<PackageReleaseNotes>Upgrade to v6.1.0 of TheByteStuff.AzureTableUtilities</PackageReleaseNotes>
<PackageTags>Azure Tables, Backup, Copy</PackageTags>
<PackAsTool>true</PackAsTool>
<PackageId>TheByteStuff.AzureTableUtilitiesCommandLine</PackageId>
<ToolCommandName>aztbu</ToolCommandName>
<PackageLicenseUrl>https://github.com/TheByteStuff/AzureTableBackupRestore/blob/master/LICENSE</PackageLicenseUrl>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<FileVersion>4.1.0.0</FileVersion>
<Version>4.1.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>CardFront_Clip.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
<PackageReference Include="TheByteStuff.AzureTableUtilities" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="CardFront_Clip.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>