-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathFluentStorage.Azure.Files.csproj
More file actions
45 lines (37 loc) · 1.82 KB
/
FluentStorage.Azure.Files.csproj
File metadata and controls
45 lines (37 loc) · 1.82 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>netstandard2.0;netstandard2.1;net70;net80;net90</TargetFrameworks>
<AssemblyName>FluentStorage.Azure.Files</AssemblyName>
<RootNamespace>FluentStorage.Azure.Files</RootNamespace>
<Description>Extension to FluentStorage providing Azure Storage Files support.</Description>
<Copyright>Copyright (c) 2023 Robin Rodricks and FluentStorage Contributors</Copyright>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>logo-nuget.png</PackageIcon>
<Authors>Robin Rodricks, Ivan Gavryliuk, FluentStorage Contributors</Authors>
<Version>6.0.0</Version>
<PackageProjectUrl>https://github.com/robinrodricks/FluentStorage</PackageProjectUrl>
<RepositoryUrl>https://github.com/robinrodricks/FluentStorage</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<LangVersion>latest</LangVersion>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\FluentStorage\sn.snk</AssemblyOriginatorKeyFile>
<DocumentationFile>$(SolutionDir)build\FluentStorage.Azure.Files.xml</DocumentationFile>
<BaseOutputPath>$(SolutionDir)build\</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Storage.File" Version="11.2.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FluentStorage\FluentStorage.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\logo-nuget.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>