-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathActivityPub.Client.csproj
44 lines (38 loc) · 2.09 KB
/
ActivityPub.Client.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
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- https://github.com/dotnet/sdk/issues/6572#issuecomment-299183988 -->
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Version>0.1.0</Version>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<LangVersion>12</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackRelease>true</PackRelease>
<Authors>acomputerdog</Authors>
<Description>ActivityPubSharp is a toolkit of modular packages that support the use of ActivityPub in .NET applications. This package implements the Client conformance class and supports the client side of Client to Server interactions.</Description>
<Copyright>2023 Hazel Koehler</Copyright>
<PackageProjectUrl>https://github.com/warriordog/ActivityPubSharp</PackageProjectUrl>
<PackageLicenseExpression>MPL-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/warriordog/ActivityPubSharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageTags>ActivityPub ActivityPubSharp APSharp ActivityStream JSON-LD Fediverse Mastodon</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ActivityPub.Common\ActivityPub.Common.csproj"/>
<ProjectReference Include="..\ActivityPub.Types\ActivityPub.Types.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
</ItemGroup>
</Project>