|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 6 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 7 | + <IncludeSymbols>true</IncludeSymbols> |
| 8 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 9 | + <Authors>logiclrd</Authors> |
| 10 | + <Product>Backblaze B2 Cloud Storage</Product> |
| 11 | + <LangVersion>7.1</LangVersion> |
| 12 | + <RootNamespace>Bytewizer.Backblaze</RootNamespace> |
| 13 | + <VersionPrefix>1.0.0</VersionPrefix> |
| 14 | + <Version Condition=" '$(Version)' == '' and '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version> |
| 15 | + <Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version> |
| 16 | + <BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber> |
| 17 | + <AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion> |
| 18 | + <FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion> |
| 19 | + <PackageId>$(AssemblyName)</PackageId> |
| 20 | + <Description>Autofac integration for Backblaze.Client.</Description> |
| 21 | + <Copyright>(c) 0000 Bytewizer. All rights reserved.</Copyright> |
| 22 | + <PackageProjectUrl>https://github.com/microcompiler/backblaze</PackageProjectUrl> |
| 23 | + <RepositoryUrl>https://github.com/microcompiler/backblaze</RepositoryUrl> |
| 24 | + <PackageTags>backblaze, b2, cloud-storage, api, csharp, storage-pod</PackageTags> |
| 25 | + <RepositoryType></RepositoryType> |
| 26 | + <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
| 27 | + <PackageIcon>logo.png</PackageIcon> |
| 28 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 29 | + <NoWarn>NU5105</NoWarn> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <!-- Github Properties --> |
| 33 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 34 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 38 | + <DocumentationFile /> |
| 39 | + </PropertyGroup> |
| 40 | + |
| 41 | + <ItemGroup> |
| 42 | + <PackageReference Include="Autofac" Version="8.0.0" /> |
| 43 | + <PackageReference Include="Microsoft.Extensions.Http" Version="3.1.0" /> |
| 44 | + <PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.0" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <ItemGroup> |
| 48 | + <None Include="..\..\LICENSE.md" Link="LICENSE.md"> |
| 49 | + <Pack>True</Pack> |
| 50 | + <PackagePath></PackagePath> |
| 51 | + </None> |
| 52 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 53 | + </ItemGroup> |
| 54 | + |
| 55 | + <ItemGroup> |
| 56 | + <None Include="..\..\images\logo.png"> |
| 57 | + <Pack>True</Pack> |
| 58 | + <PackagePath></PackagePath> |
| 59 | + </None> |
| 60 | + </ItemGroup> |
| 61 | + |
| 62 | + <ItemGroup> |
| 63 | + <ProjectReference Include="..\Client\Backblaze.Client.csproj" /> |
| 64 | + </ItemGroup> |
| 65 | + |
| 66 | +</Project> |
0 commit comments