32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<Project Sdk="Dalamud.NET.Sdk/13.0.0">
|
|
<!--
|
|
Replace `Dalamud.NET.Sdk/13.0.0` with the SDK version current at the time
|
|
you start your plugin. Check https://github.com/goatcorp/Dalamud.NET.Sdk
|
|
for the latest tag.
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<Version>0.1.0</Version>
|
|
<AssemblyVersion>0.1.0</AssemblyVersion>
|
|
<FileVersion>0.1.0</FileVersion>
|
|
<Description>Short one-line description of what your plugin does.</Description>
|
|
<Authors>Florian Wathling / Hellion Online Media</Authors>
|
|
<Company>Hellion Online Media</Company>
|
|
<Copyright>Copyright (c) 2026 Florian Wathling / Hellion Online Media</Copyright>
|
|
|
|
<RootNamespace>PluginNameTemplate</RootNamespace>
|
|
<AssemblyName>PluginNameTemplate</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!--
|
|
Add additional NuGet refs here as needed. Dalamud.NET.Sdk pulls in
|
|
Dalamud, ImGui.NET, FFXIVClientStructs, Lumina, etc. by default.
|
|
-->
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="images\icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
</Project>
|