-
Notifications
You must be signed in to change notification settings - Fork 0
/
BTCPayServer.Plugins.B2PCentral.csproj
61 lines (53 loc) · 2.37 KB
/
BTCPayServer.Plugins.B2PCentral.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
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<!-- Plugin specific properties -->
<PropertyGroup>
<Product>B2P Central plugin</Product>
<Description>Get P2P bitcoin buy offers from B2P Central, according to your onchain and lightning wallets balances</Description>
<Version>1.0.1</Version>
</PropertyGroup>
<!-- Plugin development properties -->
<PropertyGroup>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PreserveCompilationContext>false</PreserveCompilationContext>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>
<!-- This will make sure that referencing BTCPayServer doesn't put any artifact in the published directory -->
<ItemDefinitionGroup>
<ProjectReference>
<Properties>StaticWebAssetsEnabled=false</Properties>
<Private>false</Private>
<ExcludeAssets>runtime;native;build;buildTransitive;contentFiles</ExcludeAssets>
</ProjectReference>
</ItemDefinitionGroup>
<!-- If you need Entity Framework, you can uncomment this. This will make it usable in your project without publishing assemblies
already referenced by BTCPay Server Core project -->
<!--
<ItemGroup Condition="$(Configuration) != 'Release'">
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
</ItemGroup>
-->
<!-- If you reference another project, by default, the dlls won't be copied in the published plugin, you need <Private>true</Private> -->
<!--
<ItemGroup>
<ProjectReference Include="..\submodules\some-client\src\Some.Client\Some.Client.csproj">
<Private>true</Private>
</ProjectReference>
</ItemGroup>
-->
<ItemGroup>
<ProjectReference Include="..\btcpayserver\BTCPayServer\BTCPayServer.csproj" />
<EmbeddedResource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\img\B2Plogo.jpg" />
</ItemGroup>
</Project>