-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNodeBlock.Plugin.Ethereum.csproj
70 lines (60 loc) · 2.88 KB
/
NodeBlock.Plugin.Ethereum.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<PackageId>GraphLinq.Ethereum</PackageId>
<Version>1.0.0</Version>
<Authors>GraphLinq Team</Authors>
<Company>GraphLinq</Company>
<PackageDescription>This package allow the GraphLinq Engine to interact with the Ethereum Blockchain</PackageDescription>
<RepositoryUrl>https://github.com/GraphLinq/GraphLinq.Ethereum</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\netcoreapp3.1\</OutputPath>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.0.0-alpha-844" />
<PackageReference Include="Costura.Fody" Version="5.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="GraphQL" Version="3.3.2" />
<PackageReference Include="GraphQL.NewtonsoftJson" Version="3.3.2" />
<PackageReference Include="Nethereum.ABI" Version="3.8.0" />
<PackageReference Include="Nethereum.Contracts" Version="3.8.0" />
<PackageReference Include="Nethereum.HdWallet" Version="3.8.0" />
<PackageReference Include="Nethereum.JsonRpc.RpcClient" Version="3.8.0" />
<PackageReference Include="Nethereum.JsonRpc.WebSocketClient" Version="3.8.0" />
<PackageReference Include="Nethereum.RPC" Version="3.8.0" />
<PackageReference Include="Nethereum.RPC.Reactive" Version="3.8.0" />
<PackageReference Include="Nethereum.Web3" Version="3.8.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphLinq.Encoding\NodeBlock.Engine.Encoding.csproj" />
<ProjectReference Include="..\GraphLinq.Engine\NodeBlock.Engine.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Graphql.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Graphql.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Graphql.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Graphql.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Folder Include="Nodes\ChainLink\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0\plugins"" />
</Target>
</Project>