forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathAzure.Storage.DataMovement.csproj
More file actions
45 lines (45 loc) · 3.31 KB
/
Azure.Storage.DataMovement.csproj
File metadata and controls
45 lines (45 loc) · 3.31 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<GenerateAPIListing>true</GenerateAPIListing>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>Microsoft Azure.Storage.DataMovement client library</AssemblyTitle>
<Version>12.3.0-beta.1</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>12.2.2</ApiCompatVersion>
<DefineConstants>DataMovementSDK;$(DefineConstants)</DefineConstants>
<PackageTags>Microsoft Azure Storage DataMovement AzureStorage azureofficial</PackageTags>
<Description>
This client library is the base package for the Azure Storage Data Movement library. The Azure Storage Data Movement library is designed for high-performance, multi-threaded uploading, downloading and copying Azure Storage blobs and files.
This library is inteneded to be used with one or more of the Data Movement sub-packages, such as Azure.Storage.DataMovement.Blobs or Azure.Storage.DataMovement.Files.Shares.
For this release see notes - https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/README.md and https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/storage/Azure.Storage.DataMovement/CHANGELOG.md
</Description>
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
<RootNamespace>Azure.Storage.DataMovement</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Threading.Channels" />
<PackageReference Include="Azure.Core" />
<!-- <ProjectReference Include="$(MSBuildThisFileDirectory)..\..\Azure.Storage.Common\src\Azure.Storage.Common.csproj" /> -->
<PackageReference Include="Azure.Storage.Common" />
<!-- This PackageReference is commented out because Azure.Storage.Common is included as a ProjectReference above. -->
<!-- It is retained here for reference in case the dependency needs to be switched back to a PackageReference in the future. -->
</ItemGroup>
<ItemGroup>
<Compile Include="$(AzureCoreSharedSources)AzureEventSource.cs" LinkBase="Shared\Core" />
<Compile Include="$(AzureCoreSharedSources)CancellationHelper.cs" LinkBase="Shared\Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(AzureStorageSharedSources)Constants.cs" Link="Shared\%(RecursiveDir)\%(Filename)%(Extension)" />
<Compile Include="$(AzureStorageSharedSources)AggregatingProgressIncrementer.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)Errors.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)Errors.Clients.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)PartitionedStream.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)ProgressIncrementingStream.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)UriExtensions.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)PooledMemoryStream.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)Argument.cs" LinkBase="Shared\Storage" />
<Compile Include="$(AzureStorageSharedSources)SyncAsyncEventHandlerExtensions.cs" LinkBase="Shared\Storage" />
</ItemGroup>
</Project>