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.
|
|
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\netfx.props" /> <PropertyGroup> <AssemblyName>Minio</AssemblyName> <RootNamespace>Minio</RootNamespace> <TargetFrameworks>netstandard2.0;net46</TargetFrameworks> <DebugType>embedded</DebugType> <GeneratePackageOnBuild>False</GeneratePackageOnBuild> <Optimize>true</Optimize> <AssemblyOriginatorKeyFile>..\Minio.snk</AssemblyOriginatorKeyFile> <SignAssembly>true</SignAssembly> <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> </PropertyGroup>
<PropertyGroup Label="Package"> <Product>Minio</Product> <Version>3.1.0</Version> <Description>Minio .NET SDK for Amazon S3 Compatible Cloud Storage.</Description> <Copyright>Copyright (c) 2018. All rights reserved.</Copyright> <Authors>Minio, Inc.</Authors> <NoWarn>$(NoWarn);CS1591</NoWarn> <GenerateDocumentationFile>true</GenerateDocumentationFile> <PackageOutputPath>$(SolutionDir)artifacts</PackageOutputPath>
<PackageReleaseNotes>https://github.com/minio/minio-dotnet/releases</PackageReleaseNotes> <PackageIconUrl>https://www.min.io/logo/</PackageIconUrl> <PackageProjectUrl>https://github.com/minio/minio-dotnet</PackageProjectUrl> <PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> <PackageTags>minio;cloud;storage</PackageTags> <RepositoryType>git</RepositoryType> <RepositoryUrl>https://github.com/minio/minio-dotnet</RepositoryUrl> </PropertyGroup> <ItemGroup> <PackageReference Include="SourceLink.Embed.AllSourceFiles" Version="2.8.3" PrivateAssets="All" /> <PackageReference Include="AsyncFixer" Version="1.1.6" PrivateAssets="All" />
<PackageReference Include="RestSharp" Version="106.3.1" /> <PackageReference Include="System.Reactive.Linq" Version="4.0.0" /> </ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'" Label="Framework References"> <PackageReference Include="Microsoft.CSharp" Version="4.5.0" /> </ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net46'" Label="Framework References"> <Reference Include="Microsoft.CSharp" /> </ItemGroup> </Project>
|