-
Notifications
You must be signed in to change notification settings - Fork 0
/
Wivuu.AzCosmosCopy.csproj
65 lines (57 loc) · 2.51 KB
/
Wivuu.AzCosmosCopy.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
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
<ServerGarbageCollection>true</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
<AssemblyName>AzCosmosCopy</AssemblyName>
<!-- <PublishReadyToRun>true</PublishReadyToRun> -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>AzCosmosCopy</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<ServerGarbageCollection>true</ServerGarbageCollection>
<Authors>Erik O'Leary</Authors>
<Company>Wivuu</Company>
<Product>Wivuu AzCosmosCopy</Product>
<Description>Tool to copy cosmos db databases.</Description>
<PackageTags>cosmos;cosmosdb;azure;copy</PackageTags>
<PackageProjectUrl>https://github.com/wivuu/Wivuu.AzCosmosCopy</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/wivuu/Wivuu.AzCosmosCopy.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- <IncludeSymbols>true</IncludeSymbols> -->
<!-- <SymbolPackageFormat>snupkg</SymbolPackageFormat> -->
</PropertyGroup>
<PropertyGroup Condition=" '$(AsLibrary)' != 'true' ">
<VersionPrefix>1.0.12</VersionPrefix>
<ReleaseNotes>
- Dont include body in response content
</ReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(AsLibrary)' == 'true' ">
<VersionPrefix>1.0.12</VersionPrefix>
<ReleaseNotes>
- Dont include body in response content
</ReleaseNotes>
<OutputType>Library</OutputType>
<PackAsTool>false</PackAsTool>
<ToolCommandName></ToolCommandName>
<Description>Library to copy cosmos db databases.</Description>
<AssemblyName>Wivuu.AzCosmosCopy</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.20.1" />
<PackageReference Include="Microsoft.Azure.CosmosDB.BulkExecutor" Version="2.5.1-preview" />
<PackageReference Include="Spectre.Console" Version="0.40.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
</ItemGroup>
<ItemGroup Condition=" '$(AsLibrary)' == 'true' ">
<PackageReference Remove="System.CommandLine" />
<Compile Remove="Program.cs" />
</ItemGroup>
</Project>