2020-10-15 14:28:09 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
|
|
|
|
<Import Project="../Build/Common.csproj" />
|
|
|
|
|
2020-10-24 17:21:50 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<Company>BTCPay Server</Company>
|
|
|
|
<Copyright>Copyright © BTCPay Server 2020</Copyright>
|
|
|
|
<Description>A library for BTCPay Server plugin development</Description>
|
|
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
<PackageTags>btcpay,btcpayserver</PackageTags>
|
|
|
|
<PackageProjectUrl>https://github.com/btcpayserver/btcpayserver/tree/master/BTCPayServer.Abstractions</PackageProjectUrl>
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
<RepositoryUrl>https://github.com/btcpayserver/btcpayserver</RepositoryUrl>
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
<NoWarn>1591;1573;1572;1584;1570;3021</NoWarn>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
2020-10-15 14:28:09 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
</ItemGroup>
|
2020-10-24 17:21:50 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="icon.png" Pack="true" PackagePath="\" />
|
2020-10-15 14:28:09 +02:00
|
|
|
</ItemGroup>
|
2020-11-17 13:46:23 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" />
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.1" />
|
|
|
|
</ItemGroup>
|
2021-07-27 14:11:47 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\BTCPayServer.Client\BTCPayServer.Client.csproj" />
|
|
|
|
</ItemGroup>
|
2020-10-15 14:28:09 +02:00
|
|
|
</Project>
|