-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathSimpleClient.csproj
More file actions
31 lines (26 loc) · 1.18 KB
/
Copy pathSimpleClient.csproj
File metadata and controls
31 lines (26 loc) · 1.18 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
<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>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Source\ActivityPub.Client\ActivityPub.Client.csproj"/>
<ProjectReference Include="..\..\Source\ActivityPub.Types\ActivityPub.Types.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
<PackageReference Include="System.Linq.Async" Version="6.0.1"/>
</ItemGroup>
</Project>