-
Notifications
You must be signed in to change notification settings - Fork 1
/
Binance.csproj
38 lines (34 loc) · 1.27 KB
/
Binance.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>ShareInvest.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ShareInvest.$(AssemblyName)</PackageId>
<Title>BINANCE</Title>
<Authors>cyberprophet</Authors>
<Company>ShareInvest Corp.</Company>
<Description>https://developers.binance.com/docs</Description>
<Copyright>Copyright ⓒ 2024, ShareInvest Corp.</Copyright>
<PackageProjectUrl>https://github.com/crypto-currency-by-exchange</PackageProjectUrl>
<PackageIcon>binance.png</PackageIcon>
<PackageTags>crypto,trading,api,share,binance</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>1.0.0.0</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\..\Pictures\Icon\binance.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\UPbit\LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Crypto\Crypto.csproj" />
</ItemGroup>
</Project>