2024-07-26 02:36:25 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-09-15 12:19:03 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<!-- The package metadata. Fill in the properties marked as TODO below -->
|
|
|
|
|
<!-- Follow the instructions on https://learn.microsoft.com/en-us/nuget/create-packages/package-authoring-best-practices -->
|
|
|
|
|
<PackageId>ellie_marmalade</PackageId>
|
2024-07-26 12:28:21 +00:00
|
|
|
|
<PackageVersion>5.0.1</PackageVersion>
|
2024-07-26 02:36:25 +00:00
|
|
|
|
<PackageId>ellie-marmalade</PackageId>
|
|
|
|
|
<Title>Ellie Marmalade Template</Title>
|
|
|
|
|
<Authors>EllieBot Team</Authors>
|
2024-07-26 11:58:21 +00:00
|
|
|
|
<Description>Template in order to create a ellie marmalade.</Description>
|
2024-07-26 02:36:25 +00:00
|
|
|
|
<PackageTags>dotnet-new;templates</PackageTags>
|
2024-12-22 07:09:12 +00:00
|
|
|
|
<PackageProjectUrl>https://toastielab.dev/EllieBotDevs/ellie-marmalade</PackageProjectUrl>
|
2024-07-26 02:36:25 +00:00
|
|
|
|
|
2024-09-15 12:19:03 +00:00
|
|
|
|
<!-- Keep package type as 'Template' to show the package as a template package on nuget.org and make your template available in dotnet new search.-->
|
|
|
|
|
<PackageType>Template</PackageType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<IncludeContentInPack>true</IncludeContentInPack>
|
|
|
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
|
|
|
<ContentTargetFolders>content</ContentTargetFolders>
|
|
|
|
|
<NoWarn>$(NoWarn);NU5128</NoWarn>
|
|
|
|
|
<NoDefaultExcludes>true</NoDefaultExcludes>
|
|
|
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
|
|
|
</PropertyGroup>
|
2024-07-26 02:36:25 +00:00
|
|
|
|
|
2024-09-15 12:19:03 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<LocalizeTemplates>false</LocalizeTemplates>
|
|
|
|
|
</PropertyGroup>
|
2024-07-26 02:36:25 +00:00
|
|
|
|
|
|
|
|
|
<!-- Copy shortcut and full strings to output (if they exist) -->
|
|
|
|
|
<ItemGroup>
|
2024-09-15 12:19:03 +00:00
|
|
|
|
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" IsImplicitlyDefined="true"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" />
|
|
|
|
|
<Compile Remove="**\*" />
|
2024-07-26 02:36:25 +00:00
|
|
|
|
</ItemGroup>
|
2024-09-15 12:19:03 +00:00
|
|
|
|
|
2024-07-26 02:36:25 +00:00
|
|
|
|
<ItemGroup>
|
2024-09-15 12:19:03 +00:00
|
|
|
|
<None Include="README.md" Pack="true" PackagePath="" />
|
2024-07-26 02:36:25 +00:00
|
|
|
|
</ItemGroup>
|
2024-09-15 12:19:03 +00:00
|
|
|
|
</Project>
|