ellie-marmalade/ellie-marmalade.csproj

51 lines
2.2 KiB
XML
Raw Normal View History

2024-07-25 19:36:25 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
2024-07-26 04:58:21 -07:00
<!-- Reduces some boilerplate in your .cs files -->
2024-07-25 19:36:25 -07:00
<ImplicitUsings>enable</ImplicitUsings>
2024-07-26 04:56:22 -07:00
2024-07-25 19:36:25 -07:00
<!-- &lt;!&ndash; Use latest .net features &ndash;&gt;-->
<!-- <LangVersion>preview</LangVersion>-->
<!-- <EnablePreviewFeatures>true</EnablePreviewFeatures>-->
<!-- <GenerateRequiresPreviewFeaturesAttribute>true</GenerateRequiresPreviewFeaturesAttribute>-->
<DebugType>Embedded</DebugType>
<!-- tell .net that this library will be used as a plugin -->
<EnableDynamicLoading>true</EnableDynamicLoading>
<PackageType>Template</PackageType>
2024-07-26 01:30:47 -07:00
<PackageVersion>5.0</PackageVersion>
2024-07-25 19:36:25 -07:00
<PackageId>ellie-marmalade</PackageId>
<Title>Ellie Marmalade Template</Title>
<Authors>EllieBot Team</Authors>
2024-07-26 04:58:21 -07:00
<Description>Template in order to create a ellie marmalade.</Description>
2024-07-25 19:36:25 -07:00
<PackageTags>dotnet-new;templates</PackageTags>
</PropertyGroup>
<ItemGroup>
2024-07-26 04:58:21 -07:00
<!-- Base marmalade package. You MUST reference this in order to have a working marmalade -->
2024-07-25 19:36:25 -07:00
<PackageReference Include="Ellie.Marmalade" Version="5.*-*">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<!-- Note: If you want to use EllieBot services etc... You will have to manually clone
the https://toastielab.dev/Emotions-stuff/elliebot repo locally and reference the EllieBot.csproj because there is no EllieBot package atm.
2024-07-26 04:56:22 -07:00
It is strongly recommended that you checkout a specific tag which matches your version of nadeko,
2024-07-25 19:36:25 -07:00
as there could be breaking changes even between minor versions of EllieBot.
2024-07-26 04:58:21 -07:00
For example if you're running EllieBot 4.1.0 locally for which you want to create a marmalade for,
2024-07-25 19:36:25 -07:00
you should do "git checkout 4.1.0" in your EllieBot solution and then reference the EllieBot.csproj
-->
</ItemGroup>
<!-- Copy shortcut and full strings to output (if they exist) -->
<ItemGroup>
<None Update="res.yml;cmds.yml;strings/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Content Include=".template.config\template.json" />
</ItemGroup>
2024-07-26 04:56:22 -07:00
</Project>