2020-04-28 20:21:51 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-26 14:11:18 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-09-14 16:35:53 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors></Authors>
|
|
|
|
|
<Company></Company>
|
|
|
|
|
<Version>0.4.0.0</Version>
|
|
|
|
|
<Description>Currency Alert</Description>
|
|
|
|
|
<Copyright></Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/Lharz/xiv-currency-alert</PackageProjectUrl>
|
|
|
|
|
</PropertyGroup>
|
2021-08-26 14:11:18 +00:00
|
|
|
|
|
2022-09-15 19:31:57 +00:00
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<DalamudPlugin>
|
|
|
|
|
<ApiLevel>7</ApiLevel>
|
|
|
|
|
<Author>Lharz</Author>
|
|
|
|
|
<Name>CurrencyAlert</Name>
|
|
|
|
|
<Punchline>Display alerts upon reaching configurable currencies thresholds (such as Poetics or PVP marks).</Punchline>
|
|
|
|
|
<Description>/currencyalert: shows the configuration panel.</Description>
|
|
|
|
|
<Tags>
|
|
|
|
|
<Tag>Currency</Tag>
|
|
|
|
|
<Tag>Utility</Tag>
|
|
|
|
|
</Tags>
|
|
|
|
|
<Images>
|
|
|
|
|
<Icon>../icon.png</Icon>
|
|
|
|
|
</Images>
|
|
|
|
|
<Hidden>False</Hidden>
|
|
|
|
|
</DalamudPlugin>
|
|
|
|
|
</ProjectExtensions>
|
|
|
|
|
|
2022-09-14 16:35:53 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
</PropertyGroup>
|
2021-08-26 14:11:18 +00:00
|
|
|
|
|
2022-09-14 16:35:53 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
|
|
|
|
|
<RepositoryUrl>https://github.com/Lharz/xiv-currency-alert</RepositoryUrl>
|
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<BaseOutputPath>bin\</BaseOutputPath>
|
|
|
|
|
</PropertyGroup>
|
2021-08-26 14:11:18 +00:00
|
|
|
|
|
2022-09-14 16:35:53 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.8" />
|
|
|
|
|
<Reference Include="FFXIVClientStructs">
|
|
|
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Newtonsoft.Json">
|
|
|
|
|
<HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Dalamud">
|
|
|
|
|
<HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ImGui.NET">
|
|
|
|
|
<HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="ImGuiScene">
|
|
|
|
|
<HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Lumina">
|
|
|
|
|
<HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="Lumina.Excel">
|
|
|
|
|
<HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
|
|
|
|
|
<Private>false</Private>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="images\**" Link="images\%(RecursiveDir)\%(Filename)%(Extension)" CopyToOutputDirectory="Always" />
|
|
|
|
|
</ItemGroup>
|
2021-08-26 14:11:18 +00:00
|
|
|
|
|
|
|
|
|
</Project>
|