-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathManagedCode.Storage.Azure.csproj
More file actions
39 lines (33 loc) · 1.63 KB
/
ManagedCode.Storage.Azure.csproj
File metadata and controls
39 lines (33 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>9</LangVersion>
<DebugType>embedded</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Title>ManagedCode.Storage.Azure</Title>
<Authors>ManagedCode</Authors>
<PackageProjectUrl>https://github.com/managed-code-hub/Storage</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/managed-code-hub/Storage/blob/main/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/managed-code-hub/Storage</RepositoryUrl>
<PackageVersion>0.0.1</PackageVersion>
<Description>Storage for Azure</Description>
<PackageIcon>logo.png</PackageIcon>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ManagedCode.Storage.Core\ManagedCode.Storage.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
<PackageReference Include="Humanizer.Core" Version="2.8.26" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="System.Linq.Async" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\logo.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>