Skip to content

Commit 76ba697

Browse files
authored
Merge pull request #2 from NethermindEth/feature/cpm
Switch to central package management
2 parents 6ea49f2 + c0c6d33 commit 76ba697

File tree

15 files changed

+266
-225
lines changed

15 files changed

+266
-225
lines changed

src/examples/chat/Chat.csproj

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.0.0" Aliases="BouncyCastleCryptography"/>
13-
<PackageReference Include="Google.Protobuf" Version="3.22.0"/>
14-
<PackageReference Include="Google.Protobuf.Tools" Version="3.22.0"/>
15-
<PackageReference Include="Multiformats.Hash" Version="1.5.0"/>
16-
<PackageReference Include="Noise.NET" Version="1.0.0"/>
17-
<PackageReference Include="SimpleBase" Version="4.0.0"/>
12+
<PackageReference Include="BouncyCastle.Cryptography" Version="2.1.1" Aliases="BouncyCastleCryptography" />
13+
<PackageReference Include="Google.Protobuf" Version="3.22.1" />
14+
<PackageReference Include="Google.Protobuf.Tools" Version="3.22.1" />
15+
<PackageReference Include="Multiformats.Hash" Version="1.5.0" />
16+
<PackageReference Include="Noise.NET" Version="1.0.0" />
17+
<PackageReference Include="SimpleBase" Version="4.0.0" />
1818
</ItemGroup>
1919
<ItemGroup>
20-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" PrivateAssets="all"/>
21-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all"/>
20+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" PrivateAssets="all" />
21+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
2222
</ItemGroup>
2323
<ItemGroup>
24-
<ProjectReference Include="..\..\libp2p\Libp2p.Builder.Libp2pPeer\Libp2p.Builder.Libp2pPeer.csproj"/>
25-
<ProjectReference Include="..\..\libp2p\Libp2p.Core\Libp2p.Core.csproj"/>
26-
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.IpfsId\Libp2p.Protocols.IpfsId.csproj"/>
27-
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.IpTcp\Libp2p.Protocols.IpTcp.csproj"/>
28-
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Multistream\Libp2p.Protocols.Multistream.csproj"/>
29-
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Plaintext\Libp2p.Protocols.Plaintext.csproj"/>
30-
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Yamux\Libp2p.Protocols.Yamux.csproj"/>
24+
<ProjectReference Include="..\..\libp2p\Libp2p.Builder.Libp2pPeer\Libp2p.Builder.Libp2pPeer.csproj" />
25+
<ProjectReference Include="..\..\libp2p\Libp2p.Core\Libp2p.Core.csproj" />
26+
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.IpfsId\Libp2p.Protocols.IpfsId.csproj" />
27+
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.IpTcp\Libp2p.Protocols.IpTcp.csproj" />
28+
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Multistream\Libp2p.Protocols.Multistream.csproj" />
29+
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Plaintext\Libp2p.Protocols.Plaintext.csproj" />
30+
<ProjectReference Include="..\..\libp2p\Libp2p.Protocols.Yamux\Libp2p.Protocols.Yamux.csproj" />
3131
</ItemGroup>
3232

3333
</Project>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project>
2+
<PropertyGroup>
3+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<PackageVersion Include="BouncyCastle.Cryptography" Version="2.1.1" />
7+
<PackageVersion Include="coverlet.collector" Version="3.2.0" />
8+
<PackageVersion Include="Google.Protobuf" Version="3.22.1" />
9+
<PackageVersion Include="Google.Protobuf.Tools" Version="3.22.1" />
10+
<PackageVersion Include="Microsoft.CodeAnalysis" Version="4.5.0" />
11+
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
12+
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
13+
<PackageVersion Include="Microsoft.Extensions.Logging" Version="7.0.0" />
14+
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.0" />
15+
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
16+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
17+
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
18+
<PackageVersion Include="Multiformats.Hash" Version="1.5.0" />
19+
<PackageVersion Include="NSubstitute" Version="5.0.0" />
20+
<PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.16" />
21+
<PackageVersion Include="NUnit" Version="3.13.3" />
22+
<PackageVersion Include="NUnit3TestAdapter" Version="4.4.2" />
23+
<PackageVersion Include="NUnit.Analyzers" Version="3.6.1" />
24+
<PackageVersion Include="SimpleBase" Version="4.0.0" />
25+
</ItemGroup>
26+
</Project>

src/libp2p/Libp2p.Builder.Libp2pPeer/Libp2p.Builder.Libp2pPeer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0-preview.1.23110.8"/>
20-
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0-preview.1.23110.8"/>
21-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0-preview.1.23110.8"/>
19+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
20+
<PackageReference Include="Microsoft.Extensions.Logging" />
21+
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
2222
</ItemGroup>
2323

2424
</Project>
Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,34 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
77

8-
<IsPackable>false</IsPackable>
9-
</PropertyGroup>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/>
13-
<PackageReference Include="NSubstitute" Version="5.0.0"/>
14-
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.16">
15-
<PrivateAssets>all</PrivateAssets>
16-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17-
</PackageReference>
18-
<PackageReference Include="NUnit" Version="3.13.3"/>
19-
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0"/>
20-
<PackageReference Include="NUnit.Analyzers" Version="3.5.0"/>
21-
<PackageReference Include="coverlet.collector" Version="3.1.2"/>
22-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" />
13+
<PackageReference Include="NSubstitute" />
14+
<PackageReference Include="NSubstitute.Analyzers.CSharp">
15+
<PrivateAssets>all</PrivateAssets>
16+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17+
</PackageReference>
18+
<PackageReference Include="NUnit" />
19+
<PackageReference Include="NUnit3TestAdapter" />
20+
<PackageReference Include="NUnit.Analyzers">
21+
<PrivateAssets>all</PrivateAssets>
22+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
23+
</PackageReference>
24+
<PackageReference Include="coverlet.collector">
25+
<PrivateAssets>all</PrivateAssets>
26+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
27+
</PackageReference>
28+
</ItemGroup>
2329

24-
<ItemGroup>
25-
<ProjectReference Include="..\Libp2p.Core.TestsBase\Libp2p.Core.TestsBase.csproj"/>
26-
</ItemGroup>
30+
<ItemGroup>
31+
<ProjectReference Include="..\Libp2p.Core.TestsBase\Libp2p.Core.TestsBase.csproj" />
32+
</ItemGroup>
2733

2834
</Project>
Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
77

8-
<IsPackable>false</IsPackable>
9-
</PropertyGroup>
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/>
13-
<PackageReference Include="NUnit" Version="3.13.3"/>
14-
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0"/>
15-
<PackageReference Include="NUnit.Analyzers" Version="3.5.0"/>
16-
<PackageReference Include="NSubstitute" Version="4.4.0"/>
17-
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.16"/>
18-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" />
13+
<PackageReference Include="NUnit" />
14+
<PackageReference Include="NUnit3TestAdapter" />
15+
<PackageReference Include="NUnit.Analyzers">
16+
<PrivateAssets>all</PrivateAssets>
17+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
18+
</PackageReference>
19+
<PackageReference Include="NSubstitute" />
20+
<PackageReference Include="NSubstitute.Analyzers.CSharp" />
21+
</ItemGroup>
1922

20-
<ItemGroup>
21-
<ProjectReference Include="..\Libp2p.Core\Libp2p.Core.csproj"/>
22-
</ItemGroup>
23+
<ItemGroup>
24+
<ProjectReference Include="..\Libp2p.Core\Libp2p.Core.csproj" />
25+
</ItemGroup>
2326

2427
</Project>
Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
88

9-
<PropertyGroup>
10-
<Description>Core routines and APIs</Description>
11-
<PackageTags>libp2p network</PackageTags>
12-
</PropertyGroup>
9+
<PropertyGroup>
10+
<Description>Core routines and APIs</Description>
11+
<PackageTags>libp2p network</PackageTags>
12+
</PropertyGroup>
1313

14-
<ItemGroup>
15-
<ProjectReference Include="..\Libp2p.Generators.EnumsGenerator\Libp2p.Generators.EnumsGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
16-
<ProjectReference Include="..\Libp2p.Generators.ProtobufGenerator\Libp2p.Generators.ProtobufGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
17-
</ItemGroup>
14+
<ItemGroup>
15+
<ProjectReference Include="..\Libp2p.Generators.EnumsGenerator\Libp2p.Generators.EnumsGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
16+
<ProjectReference Include="..\Libp2p.Generators.ProtobufGenerator\Libp2p.Generators.ProtobufGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
17+
</ItemGroup>
1818

19-
<ItemGroup>
20-
<PackageReference Include="BouncyCastle.Cryptography" Version="2.0.0" Aliases="BouncyCastleCryptography"/>
21-
<PackageReference Include="Google.Protobuf" Version="3.22.0"/>
22-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0-preview.1.23110.8"/>
23-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0-preview.1.23110.8"/>
24-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0-preview.1.23110.8"/>
25-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
26-
<PrivateAssets>all</PrivateAssets>
27-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28-
</PackageReference>
29-
<PackageReference Include="Multiformats.Hash" Version="1.5.0"/>
30-
<PackageReference Include="SimpleBase" Version="4.0.0"/>
31-
</ItemGroup>
19+
<ItemGroup>
20+
<PackageReference Include="BouncyCastle.Cryptography" Aliases="BouncyCastleCryptography"/>
21+
<PackageReference Include="Google.Protobuf" />
22+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
23+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
24+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
25+
<PackageReference Include="Microsoft.SourceLink.GitHub">
26+
<PrivateAssets>all</PrivateAssets>
27+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
28+
</PackageReference>
29+
<PackageReference Include="Multiformats.Hash" />
30+
<PackageReference Include="SimpleBase" />
31+
</ItemGroup>
3232

33-
<ItemGroup>
34-
<Folder Include="Enums\"/>
35-
</ItemGroup>
33+
<ItemGroup>
34+
<Folder Include="Enums\"/>
35+
</ItemGroup>
3636

3737
</Project>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
88

9-
<ItemGroup>
10-
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.4.0"/>
11-
</ItemGroup>
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.CodeAnalysis" />
11+
</ItemGroup>
1212

1313
</Project>
Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<PackageCopyToOutput>true</PackageCopyToOutput>
8-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<PackageCopyToOutput>true</PackageCopyToOutput>
8+
</PropertyGroup>
99

10-
<ItemGroup>
11-
<PackageReference Include="Google.Protobuf.Tools" Version="3.22.0"/>
12-
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.4.0"/>
13-
</ItemGroup>
10+
<ItemGroup>
11+
<PackageReference Include="Google.Protobuf.Tools" />
12+
<PackageReference Include="Microsoft.CodeAnalysis" />
13+
</ItemGroup>
1414

1515

16-
<PropertyGroup>
17-
<protoc_linux64>tools\linux_x64\protoc</protoc_linux64>
18-
<protoc_linux86>tools\linux_x86\protoc</protoc_linux86>
19-
<protoc_macosx64>tools\macosx_x64\protoc</protoc_macosx64>
20-
<protoc_macosx86>tools\macosx_x86\protoc</protoc_macosx86>
21-
<protoc_windows64>tools\windows_x64\protoc.exe</protoc_windows64>
22-
<protoc_windows86>tools\windows_x86\protoc.exe</protoc_windows86>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(MSBuildRuntimeType)' == 'Core' or ('$(MSBuildVersion)' != '' and $([System.Version]::Parse($(MSBuildVersion))) &gt;= $([System.Version]::Parse(15.3))) ">
25-
<protoc Condition="'$([MSBuild]::IsOsPlatform(Linux))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_linux64)</protoc>
26-
<protoc Condition="'$([MSBuild]::IsOsPlatform(Linux))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_linux86)</protoc>
27-
<protoc Condition="'$([MSBuild]::IsOsPlatform(OSX))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_macosx64)</protoc>
28-
<protoc Condition="'$([MSBuild]::IsOsPlatform(OSX))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_macosx86)</protoc>
29-
<protoc Condition="'$([MSBuild]::IsOsPlatform(Windows))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_windows64)</protoc>
30-
<protoc Condition="'$([MSBuild]::IsOsPlatform(Windows))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_windows86)</protoc>
31-
</PropertyGroup>
16+
<PropertyGroup>
17+
<protoc_linux64>tools\linux_x64\protoc</protoc_linux64>
18+
<protoc_linux86>tools\linux_x86\protoc</protoc_linux86>
19+
<protoc_macosx64>tools\macosx_x64\protoc</protoc_macosx64>
20+
<protoc_macosx86>tools\macosx_x86\protoc</protoc_macosx86>
21+
<protoc_windows64>tools\windows_x64\protoc.exe</protoc_windows64>
22+
<protoc_windows86>tools\windows_x86\protoc.exe</protoc_windows86>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(MSBuildRuntimeType)' == 'Core' or ('$(MSBuildVersion)' != '' and $([System.Version]::Parse($(MSBuildVersion))) &gt;= $([System.Version]::Parse(15.3))) ">
25+
<protoc Condition="'$([MSBuild]::IsOsPlatform(Linux))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_linux64)</protoc>
26+
<protoc Condition="'$([MSBuild]::IsOsPlatform(Linux))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_linux86)</protoc>
27+
<protoc Condition="'$([MSBuild]::IsOsPlatform(OSX))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_macosx64)</protoc>
28+
<protoc Condition="'$([MSBuild]::IsOsPlatform(OSX))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_macosx86)</protoc>
29+
<protoc Condition="'$([MSBuild]::IsOsPlatform(Windows))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X64'">$(protoc_windows64)</protoc>
30+
<protoc Condition="'$([MSBuild]::IsOsPlatform(Windows))' And '$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)'=='X86'">$(protoc_windows86)</protoc>
31+
</PropertyGroup>
3232

33-
<ItemGroup>
34-
<AssemblyAttribute Include="Nethermind.Libp2p.Generators.ProtobufGenerator.ProtocLocation">
35-
<_Parameter1>$(NuGetPackageRoot)google.protobuf.tools\3.22.0\$(protoc)</_Parameter1>
36-
</AssemblyAttribute>
37-
</ItemGroup>
33+
<ItemGroup>
34+
<AssemblyAttribute Include="Nethermind.Libp2p.Generators.ProtobufGenerator.ProtocLocation">
35+
<_Parameter1>$(NuGetPackageRoot)google.protobuf.tools\3.22.0\$(protoc)</_Parameter1>
36+
</AssemblyAttribute>
37+
</ItemGroup>
3838

3939
</Project>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
88

9-
<ItemGroup>
10-
<ProjectReference Include="..\Libp2p.Core\Libp2p.Core.csproj"/>
11-
</ItemGroup>
9+
<ItemGroup>
10+
<ProjectReference Include="..\Libp2p.Core\Libp2p.Core.csproj"/>
11+
</ItemGroup>
1212

1313
</Project>

0 commit comments

Comments
 (0)