-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEth2Overwatch.csproj
96 lines (88 loc) · 4.49 KB
/
Eth2Overwatch.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.17763.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Alexander Maushammer</Authors>
<Company>Alexander Maushammer</Company>
<Product>Windows Tool to watch Eth1 Node, Eth2 Beacon Chain and Eth2 Validator</Product>
<Copyright>MIT</Copyright>
<Description>Use at own Risk! Do not run other Eth1/Eth2 nodes on the same compupter.
Eth2Overwatch is a completly free tool to manage your Geth Eth1, Prysm Eth2 Beacon Chain and Prysm Eth2 Validator clients.
Its a windows tool to start/stop/auto restart your processes:
Eth1: Geth (Must be installed manually)
Eth2 Beacon Chain and Validator from prysm labs (the latest version will be downloaded manually.</Description>
<PackageTags>Eth1, Eth2, Beaconchain, Validator</PackageTags>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>sgKey.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<Version>1.1.0-RC.1</Version>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<ApplicationIcon>logo.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Api.CommonProtos" Version="2.16.0" />
<PackageReference Include="Google.Protobuf" Version="3.29.1" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.29.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.67.0" />
<PackageReference Include="Grpc.Tools" Version="2.68.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Nethereum.Geth" Version="4.26.0" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="ExternalProtos\google\api\http.proto" GrpcServices="Client" ProtoRoot="ExternalProtos">
<Link>protos/google/api/http.proto</Link>
</Protobuf>
<Protobuf Include="ExternalProtos\google\api\annotations.proto" GrpcServices="Client" ProtoRoot="ExternalProtos">
<Link>protos/google/api/annotations.proto</Link>
</Protobuf>
<Protobuf Include="ExternalProtos\github.com\gogo\protobuf\gogoproto\gogo.proto" GrpcServices="Client" ProtoRoot="ExternalProtos\">
<Link>protos/github.com/gogo/protobuf/gogoproto/gogo.proto</Link>
</Protobuf>
<Protobuf Include="..\ethereumapis\eth\v1alpha1\node.proto" GrpcServices="Client" ProtoRoot="..\ethereumapis\;ExternalProtos\">
<Link>protos/eth/v1alpha1/node.proto</Link>
</Protobuf>
<Protobuf Include="..\ethereumapis\eth\v1alpha1\attestation.proto" GrpcServices="Client" ProtoRoot="..\ethereumapis\;ExternalProtos\">
<Link>protos/eth/v1alpha1/attestation.proto</Link>
</Protobuf>
<Protobuf Include="..\ethereumapis\eth\v1alpha1\beacon_block.proto" GrpcServices="Client" ProtoRoot="..\ethereumapis\;ExternalProtos\">
<Link>protos/eth/v1alpha1/beacon_block.proto</Link>
</Protobuf>
<Protobuf Include="..\ethereumapis\eth\v1alpha1\beacon_chain.proto" GrpcServices="Client" ProtoRoot="..\ethereumapis\;ExternalProtos\">
<Link>protos/eth/v1alpha1/beacon_chain.proto</Link>
</Protobuf>
<Protobuf Include="..\ethereumapis\eth\v1alpha1\validator.proto" GrpcServices="Client" ProtoRoot="..\ethereumapis\;ExternalProtos\">
<Link>protos/eth/v1alpha1/validator.proto</Link>
</Protobuf>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Eth2OverwatchSettings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Eth2OverwatchSettings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Eth2OverwatchSettings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Eth2OverwatchSettings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>