-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathBackblaze.Client.csproj
More file actions
73 lines (65 loc) · 2.99 KB
/
Backblaze.Client.csproj
File metadata and controls
73 lines (65 loc) · 2.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageId>Backblaze.Client</PackageId>
<Authors>Microcompiler</Authors>
<Company>Bytewizer Inc.</Company>
<Product>Backblaze B2 Cloud Storage</Product>
<LangVersion>8.0</LangVersion>
<RootNamespace>Bytewizer.Backblaze</RootNamespace>
<VersionPrefix>1.1.0</VersionPrefix>
<Version Condition=" '$(Version)' == '' and '$(VersionSuffix)' != '' ">$(VersionPrefix)-$(VersionSuffix)</Version>
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)</Version>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber>
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion>
<AssemblyName>Backblaze.Client</AssemblyName>
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
<PackageId>$(AssemblyName)</PackageId>
<Description>Backblaze.Client is a high-performance .NET Core implementation of the Backblaze B2 Cloud Storage.</Description>
<Copyright>(c) 0000 Bytewizer. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/microcompiler/backblaze</PackageProjectUrl>
<RepositoryUrl>https://github.com/microcompiler/backblaze</RepositoryUrl>
<PackageTags>backblaze, b2, cloud-storage, api, csharp, storage-pod</PackageTags>
<RepositoryType></RepositoryType>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<NoWarn>NU5105</NoWarn>
</PropertyGroup>
<!-- Github Properties -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile />
</PropertyGroup>
<ItemGroup>
<Compile Remove="Interfaces\**" />
<EmbeddedResource Remove="Interfaces\**" />
<None Remove="Interfaces\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="8.4.2" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\LICENSE.md" Link="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>