Initial commit: MSQ Progress plugin v1.0.0

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-21 18:57:38 -05:00
commit 919b72051f
10 changed files with 831 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<Project Sdk="Dalamud.NET.Sdk/14.0.1">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net10.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Label="Build">
<OutputType>Library</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendPlatformToOutputPath>false</AppendPlatformToOutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>MSQProgress</AssemblyName>
<Version>1.0.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<ItemGroup>
<Content Include="MSQProgress.json" CopyToOutputDirectory="PreserveNewest" />
<EmbeddedResource Include="DutyUnlockData.json" />
</ItemGroup>
</Project>