73 lines
2.5 KiB
XML
73 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="LICENSE" />
|
|
<None Remove=".gitignore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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="CheapLoc">
|
|
<HintPath>$(DalamudLibPath)CheapLoc.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>
|
|
<EmbeddedResource Update="Localization\Strings.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Localization\Strings.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Strings.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project>
|