|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 | <PropertyGroup>
|
3 | 3 | <TargetFramework>netcoreapp3.1</TargetFramework>
|
4 |
| - <Repository>https://github.com/slockit/in3-c</Repository> |
5 | 4 | <RootNamespace>csharp</RootNamespace>
|
6 | 5 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
| 6 | + <Authors>slock.it</Authors> |
| 7 | + <Owners>slock.it</Owners> |
| 8 | + <Title>In3</Title> |
| 9 | + <Description>Incubed client and provider for web3. Based on in3-c runtime.</Description> |
| 10 | + <RuntimeIdentifiers>osx-x64;linux-x64;win-x64;linux-arm64</RuntimeIdentifiers> |
| 11 | + <Version Condition="'$(version)' != ''">${version}</Version> |
| 12 | + <RepositoryUrl>https://github.com/slockit/in3-c</RepositoryUrl> |
| 13 | + <RepositoryType>git</RepositoryType> |
| 14 | + <PackageId>Slockit.In3</PackageId> |
| 15 | + <PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression> |
| 16 | + <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
| 17 | + <PackageDocumentation>https://in3.readthedocs.io</PackageDocumentation> |
| 18 | + <PackageProjectUrl>https://in3.readthedocs.io</PackageProjectUrl> |
| 19 | + <PackageTags>In3;C;Arm;X86;X64;Macos;Windows;Linux;Blockchain;Ethereum;Bitcoin;Ipfs</PackageTags> |
7 | 20 | </PropertyGroup>
|
8 | 21 | <ItemGroup>
|
9 | 22 | <Reference Include="System.Text.Json, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51">
|
10 | 23 | <HintPath>..\..\..\..\..\..\..\usr\share\dotnet\packs\Microsoft.NETCore.App.Ref\3.1.0\ref\netcoreapp3.1\System.Text.Json.dll</HintPath>
|
11 | 24 | </Reference>
|
| 25 | + <!-- Heavily "inspired" by: https://github.com/CoreyKaylor/Lightning.NET/blob/master/src/LightningDB/LightningDB.csproj --> |
| 26 | + <None Include="runtimes\**\*.*"> |
| 27 | + <Pack>true</Pack> |
| 28 | + <PackagePath>runtimes</PackagePath> |
| 29 | + </None> |
| 30 | + <None Include="In3.targets"> |
| 31 | + <Pack>true</Pack> |
| 32 | + <PackagePath>build</PackagePath> |
| 33 | + </None> |
12 | 34 | </ItemGroup>
|
13 | 35 | </Project>
|
0 commit comments