-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
22 lines (22 loc) · 1.03 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<Authors>threenine.co.uk</Authors>
<TargetFramework>net7.0</TargetFramework>
<Title>PayBolt</Title>
<Description>Bitcoin Lightning Network Payment library</Description>
<RepositoryType>git</RepositoryType>
<PackageTags>bitcoin, lightning</PackageTags>
<RepositoryUrl>https://github.com/threenine/paybolt</RepositoryUrl>
<Copyright>Copyright © $([System.DateTime]::Now.ToString("yyyy")) Three Nine Consulting Limited</Copyright>
<PackageProjectUrl>https://www.threenine.co.uk/paybolt</PackageProjectUrl>
<license>https://github.com/threenine/paybolt/blob/master/LICENSE</license>
<PackageIcon>PayBolt.png</PackageIcon>
<Version></Version>
<RootNamespace>PayBolt</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)PayBolt.png" Pack="true" PackagePath="/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>