Files
btcpayserver-monero-plugin/Plugins/Monero/BTCPayServer.Plugins.Monero.csproj
2025-02-01 23:21:07 +09:00

60 lines
2.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<!-- Plugin specific properties -->
<PropertyGroup>
<Product>BTCPay Server: Monero support plugin</Product>
<Description>This plugin extends BTCPay Server to enable users to receive payments via Monero.</Description>
<Version>1.0.0</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" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="monero.svg" />
</ItemGroup>
</Project>