40 lines
No EOL
1.9 KiB
XML
40 lines
No EOL
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<!-- Reduces some boilerplate in your .cs files -->
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<!-- Use latest .net features -->
|
|
<LangVersion>preview</LangVersion>
|
|
<EnablePreviewFeatures>true</EnablePreviewFeatures>
|
|
<GenerateRequiresPreviewFeaturesAttribute>true</GenerateRequiresPreviewFeaturesAttribute>
|
|
|
|
<!-- tell .net that this library will be used as a plugin -->
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
<RootNamespace>Social</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Base marmalade package. You MUST reference this in order to have a working marmalade -->
|
|
<!-- Also, this package comes from Toastielab, which requires you to have a NuGet.Config file next to your .csproj -->
|
|
<PackageReference Include="Ellie.Marmalade" Version="5.3.3">
|
|
<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.
|
|
It is strongly recommended that you checkout a specific tag which matches your version of ellie,
|
|
as there could be breaking changes even between minor versions of EllieBot.
|
|
For example if you're running EllieBot 4.1.0 locally for which you want to create a marmalade for,
|
|
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>
|
|
</Project> |