-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathFluentStorage.AWS.csproj
42 lines (40 loc) · 1.99 KB
/
FluentStorage.AWS.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
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyTitle>FluentStorage.AWS</AssemblyTitle>
<TargetFrameworks>netstandard2.0;netstandard2.1;net50;net60</TargetFrameworks>
<AssemblyName>FluentStorage.AWS</AssemblyName>
<PackageId>FluentStorage.AWS</PackageId>
<Description>Extension to FluentStorage providing integration with AWS S3 blob storage.</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>5.5.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>bin\$(Configuration)\$(TargetFramework)\FluentStorage.AWS.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="3.7.304" />
<PackageReference Include="AWSSDK.S3" Version="3.7.307.32" />
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.300.91" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.301.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FluentStorage\FluentStorage.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\logo-nuget.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>