NethereumWorkflow.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net8.0</TargetFramework> 5 <RootNamespace>NethereumWorkflow</RootNamespace> 6 <ImplicitUsings>enable</ImplicitUsings> 7 <Nullable>enable</Nullable> 8 9 </PropertyGroup> 10 <ItemGroup> 11 <PackageReference Include="Nethereum.Web3" Version="4.14.0" /> 12 </ItemGroup> 13 14 <ItemGroup> 15 <ProjectReference Include="..\BlockchainUtils\BlockchainUtils.csproj" /> 16 <ProjectReference Include="..\Logging\Logging.csproj" /> 17 <ProjectReference Include="..\Utils\Utils.csproj" /> 18 </ItemGroup> 19 20 </Project>