mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 07:34:24 +01:00
44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<LangVersion>10</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<!-- Plugin specific properties -->
|
|
<PropertyGroup>
|
|
<Product>Nostr </Product>
|
|
<Description>Allows you to verify your nostr account with NIP5 and zap like the rest of the crazies</Description>
|
|
<Version>1.0.6</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>
|
|
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\**" />
|
|
<ProjectReference Include="..\..\submodules\btcpayserver\BTCPayServer\BTCPayServer.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Resources" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NNostr.Client" Version="0.0.24" />
|
|
</ItemGroup>
|
|
</Project>
|