23 lines
711 B
XML
23 lines
711 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<Import Project="Dalamud.Plugin.Bootstrap.targets"/>
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<Authors></Authors>
|
||
|
<Company></Company>
|
||
|
<Version>0.0.0.1</Version>
|
||
|
<Description>A sample plugin.</Description>
|
||
|
<Copyright></Copyright>
|
||
|
<PackageProjectUrl>https://github.com/goatcorp/SamplePlugin</PackageProjectUrl>
|
||
|
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Include="..\Data\goat.png">
|
||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||
|
<Visible>false</Visible>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
</Project>
|