You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.2 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\netfx.props" />
  3. <PropertyGroup>
  4. <AssemblyName>Minio</AssemblyName>
  5. <RootNamespace>Minio</RootNamespace>
  6. <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
  7. <DebugType>embedded</DebugType>
  8. <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
  9. <Optimize>true</Optimize>
  10. <AssemblyOriginatorKeyFile>..\Minio.snk</AssemblyOriginatorKeyFile>
  11. <SignAssembly>true</SignAssembly>
  12. <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
  13. </PropertyGroup>
  14. <PropertyGroup Label="Package">
  15. <Product>Minio</Product>
  16. <Version>3.1.0</Version>
  17. <Description>Minio .NET SDK for Amazon S3 Compatible Cloud Storage.</Description>
  18. <Copyright>Copyright (c) 2018. All rights reserved.</Copyright>
  19. <Authors>Minio, Inc.</Authors>
  20. <NoWarn>$(NoWarn);CS1591</NoWarn>
  21. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  22. <PackageOutputPath>$(SolutionDir)artifacts</PackageOutputPath>
  23. <PackageReleaseNotes>https://github.com/minio/minio-dotnet/releases</PackageReleaseNotes>
  24. <PackageIconUrl>https://www.min.io/logo/</PackageIconUrl>
  25. <PackageProjectUrl>https://github.com/minio/minio-dotnet</PackageProjectUrl>
  26. <PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
  27. <PackageTags>minio;cloud;storage</PackageTags>
  28. <RepositoryType>git</RepositoryType>
  29. <RepositoryUrl>https://github.com/minio/minio-dotnet</RepositoryUrl>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.8.3" PrivateAssets="All" />
  33. <PackageReference Include="AsyncFixer" Version="1.1.6" PrivateAssets="All" />
  34. <PackageReference Include="RestSharp" Version="106.3.1" />
  35. <PackageReference Include="System.Reactive.Linq" Version="4.0.0" />
  36. </ItemGroup>
  37. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'" Label="Framework References">
  38. <PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
  39. </ItemGroup>
  40. <ItemGroup Condition="'$(TargetFramework)' == 'net46'" Label="Framework References">
  41. <Reference Include="Microsoft.CSharp" />
  42. </ItemGroup>
  43. </Project>