Upgraded project to target .NET 10.0 and updated Dalamud SDK and DalamudPackager to 14.0.1. Also updated DotNet.ReproducibleBuilds to 1.2.39 and adjusted packages.lock.json accordingly. Fixed a typo in the plugin Punchline in HouseStealerPlugin.json.
66 lines
2.2 KiB
XML
66 lines
2.2 KiB
XML
<Project Sdk="Dalamud.NET.Sdk/14.0.1">
|
|
|
|
<PropertyGroup>
|
|
<PluginVersion>1.0.0</PluginVersion>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<AssemblyTitle>HouseStealerPlugin</AssemblyTitle>
|
|
<Product>HouseStealerPlugin</Product>
|
|
<Version>$(PluginVersion)</Version>
|
|
<FileVersion>$(PluginVersion)</FileVersion>
|
|
<AssemblyVersion>$(PluginVersion)</AssemblyVersion>
|
|
<OutputPath>..\bin\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<DebugType>pdbonly</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DalamudPackager" Version="14.0.1" />
|
|
<PackageReference Include="Lumina.Excel" Version="7.3.1" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<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="FFXIVClientStructs">
|
|
<HintPath>$(DalamudLibPath)FFXIVClientStructs.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>
|
|
|
|
</Project> |