This repository has been archived by the owner on Mar 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathMoneroClient.csproj
52 lines (47 loc) · 1.97 KB
/
MoneroClient.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>8</LangVersion>
<Platforms>AnyCPU;x64;x84</Platforms>
<RootNamespace>Monero.Client</RootNamespace>
<AssemblyName>Monero.Client</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>1.0.1.7</Version>
<RepositoryUrl>https://github.com/Agorist-Action/csharp-monero-rpc-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>
Release Notes v1.0.1.7
- Only allow Monero clients to be created via CreateAsync method (and change signature).
- Add GetTransactionPool and GetTransactions non-JsonRpc interface call to MoneroDaemonClient.
</PackageReleaseNotes>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageIcon>monero-xmr-logo.png</PackageIcon>
<PackageIconUrl />
<Authors>Agorist-Action</Authors>
<Company>Agorist-Action</Company>
<Description>A wallet and daemon client to interface with Monero's JSON-RPC API, built on .netstandard2.1.</Description>
<Copyright>None</Copyright>
<PackageTags>monero, client, cryptocurrency, api, json-rpc, rpc, daemon, wallet, wallet-rpc</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageId>Monero.Client</PackageId>
<Product>Monero JSON-RPC Client</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Text.Json" Version="4.7.2" />
</ItemGroup>
<ItemGroup>
<None Include="gif\monero-xmr-logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>