-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathGWallet.Backend.fsproj
91 lines (87 loc) · 3.71 KB
/
GWallet.Backend.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<PropertyGroup>
<Version>0.7.445.0</Version>
<AssemblyVersion>0.7.445.0</AssemblyVersion>
<FileVersion>0.7.445.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\CommonAssemblyInfo.fs" />
<Compile Include="Properties\AssemblyInfo.fs" />
<Compile Include="FSharpUtil.fs" />
<Compile Include="Shuffler.fs" />
<Compile Include="Exceptions.fs" />
<Compile Include="Marshalling.fs" />
<Compile Include="Currency.fs" />
<Compile Include="AccountTypes.fs" />
<Compile Include="Config.fs" />
<Compile Include="Networking.fs" />
<Compile Include="JsonRpcTcpClient.fs" />
<Compile Include="IBlockchainFeeInfo.fs" />
<Compile Include="TransferAmount.fs" />
<Compile Include="Infrastructure.fs" />
<Compile Include="CachingTypes.fs" />
<Compile Include="Server.fs" />
<Compile Include="Caching.fs" />
<Compile Include="Transaction.fs" />
<Compile Include="FaultTolerantParallelClient.fs" />
<Compile Include="FiatValueEstimation.fs" />
<Compile Include="UtxoCoin\ElectrumServer.fs" />
<Compile Include="UtxoCoin\StratumClient.fs" />
<Compile Include="UtxoCoin\ElectrumClient.fs" />
<Compile Include="UtxoCoin\UtxoCoinServer.fs" />
<Compile Include="UtxoCoin\UtxoCoinMinerFee.fs" />
<Compile Include="UtxoCoin\TransactionTypes.fs" />
<Compile Include="UtxoCoin\UtxoCoinAccount.fs" />
<Compile Include="Ether\EtherExceptions.fs" />
<Compile Include="Ether\EtherMinerFee.fs" />
<Compile Include="Ether\TransactionMetadata.fs" />
<Compile Include="Ether\TokenManager.fs" />
<Compile Include="Ether\EtherServer.fs" />
<Compile Include="Ether\EtherAccount.fs" />
<Compile Include="BlockExplorer.fs" />
<Compile Include="WarpKey.fs" />
<Compile Include="Account.fs" />
<Compile Include="Formatting.fs" />
<Compile Include="ServerManager.fs" />
<EmbeddedResource Include="servers.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="Ether\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.7.0" />
<PackageReference Include="Fsdk" Version="0.6.0--date20230530-1155.git-3bb8d08" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="NBitcoin" Version="6.0.17">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="NBitcoin.Altcoins" Version="3.0.8">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="Nethereum" Version="0.99.0--date20240303-0535.git-f0bc8be">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="SharpRaven" Version="2.4.0">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="FSharp.Data" Version="3.0.0">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="HtmlAgilityPack" Version="1.11.24">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="FSharpx.Collections" Version="3.1.0">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
<PackageReference Include="JsonRpcSharp" Version="0.99.0--date20240303-0338.git-d673848">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
</ItemGroup>
</Project>