mirror of
https://github.com/MAGICGrants/btcpayserver-monero-plugin.git
synced 2026-01-09 02:47:53 -05:00
57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<!-- Plugin specific properties -->
|
|
<PropertyGroup>
|
|
<Product>BTCPay Server Plugin Template</Product>
|
|
<Description>A template for your own BTCPay Server plugin.</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>
|
|
</Project>
|