-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBcQuery.csproj
32 lines (27 loc) · 1.33 KB
/
BcQuery.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>BcQuery</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="dotnet-libp2p\**" />
<EmbeddedResource Remove="dotnet-libp2p\**" />
<None Remove="dotnet-libp2p\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="dotnet-libp2p\src\libp2p\Libp2p.Core\Libp2p.Core.csproj" />
<ProjectReference Include="dotnet-libp2p\src\libp2p\Libp2p.Protocols.MDns\Libp2p.Protocols.MDns.csproj" />
<ProjectReference Include="dotnet-libp2p\src\libp2p\Libp2p\Libp2p.csproj" />
</ItemGroup>
</Project>