-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathFluentStorage.csproj
More file actions
50 lines (46 loc) · 2.64 KB
/
FluentStorage.csproj
File metadata and controls
50 lines (46 loc) · 2.64 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
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>FluentStorage</AssemblyTitle>
<TargetFrameworks>netstandard2.0;netstandard2.1;net70;net80;net90</TargetFrameworks>
<AssemblyName>FluentStorage</AssemblyName>
<PackageId>FluentStorage</PackageId>
<Description>FluentStorage, originally known as Storage.NET, is a polycloud .NET cloud storage library to interface with multiple cloud providers from a single unified interface. Provides Blob storage (AWS S3, GCP, FTP, SFTP, Azure Blob/File/Event Hub/Data Lake) and Messaging (AWS SQS, Azure Queue/ServiceBus). Supports .NET 5+ and .NET Standard 2.0+. Pure C#. MIT license. Commercial use allowed.</Description>
<Copyright>Copyright (c) 2023 Robin Rodricks and FluentStorage Contributors</Copyright>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>logo-nuget.png</PackageIcon>
<Authors>Robin Rodricks, FluentStorage Contributors</Authors>
<Version>6.0.4</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>sn.snk</AssemblyOriginatorKeyFile>
<DocumentationFile>$(SolutionDir)build\FluentStorage.xml</DocumentationFile>
<BaseOutputPath>$(SolutionDir)build\</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>JSON</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<DefineConstants>JSON</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
<PackageReference Include="TestableIO.System.IO.Abstractions.Wrappers" Version="22.0.15" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' ">
<PackageReference Include="System.Text.Json" Version="8.0.6" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\logo-nuget.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>