forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Azure.Batch.Conventions.Files.csproj
29 lines (27 loc) · 1.23 KB
/
Microsoft.Azure.Batch.Conventions.Files.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>
This library encapsulates a set of storage conventions for Azure Batch task
and job outputs, making it convenient for clients to browse and retrieve outputs
by task and job id and the type of output.
</Description>
<AssemblyTitle>Microsoft Azure Batch File Conventions</AssemblyTitle>
<Version>3.6.0-preview.1</Version>
<PackageTags>Microsoft,Azure,Batch,windowsazureofficial</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageReleaseNotes>
Improve usability of GetOutputStoragePath.
</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Batch" />
<PackageReference Include="WindowsAzure.Storage" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.4' ">
<PackageReference Include="System.Security.Cryptography.Algorithms" />
</ItemGroup>
</Project>