29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<PackageType>Template</PackageType>
|
|
<PackageVersion>1.0.0</PackageVersion>
|
|
<PackageId>StellaOps.Templates</PackageId>
|
|
<Title>StellaOps Plugin Templates</Title>
|
|
<Authors>StellaOps</Authors>
|
|
<Description>Templates for creating StellaOps plugins including connectors and scheduled jobs.</Description>
|
|
<PackageTags>dotnet-new;templates;stellaops;plugin</PackageTags>
|
|
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://stellaops.io</PackageProjectUrl>
|
|
<RepositoryUrl>https://git.stella-ops.org/stella-ops.org/git.stella-ops.org</RepositoryUrl>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<IncludeContentInPack>true</IncludeContentInPack>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
<NoWarn>$(NoWarn);NU5128</NoWarn>
|
|
<NoDefaultExcludes>true</NoDefaultExcludes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="stellaops-plugin-connector\**\*" Exclude="stellaops-plugin-connector\**\bin\**;stellaops-plugin-connector\**\obj\**" />
|
|
<Content Include="stellaops-plugin-scheduler\**\*" Exclude="stellaops-plugin-scheduler\**\bin\**;stellaops-plugin-scheduler\**\obj\**" />
|
|
<Compile Remove="**\*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|