-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathNethereum.BlockchainStore.MongoDb.csproj
More file actions
26 lines (23 loc) · 1.36 KB
/
Nethereum.BlockchainStore.MongoDb.csproj
File metadata and controls
26 lines (23 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\buildConf\Generic.props" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Authors>RJ MajorDutch, $(DefaultAuthors)</Authors>
<UserSecretsId>Nethereum.BlockchainStore.MongoDb.UserSecrets</UserSecretsId>
<Description>Store Ethereum block chain data in MongoDB.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.1" />
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nethereum.Configuration.Utils\Nethereum.Microsoft.Configuration.Utils.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Condition="'$(UseLocalNethereum)' == 'false'" Include="Nethereum.Web3" Version="$(NethereumWeb3Version)" />
<ProjectReference Condition="'$(UseLocalNethereum)' == 'true'" Include="..\..\..\Nethereum\src\Nethereum.Web3\Nethereum.Web3.csproj" />
</ItemGroup>
</Project>