2021-09-28 20:27:59 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors></Authors>
|
|
|
|
|
<Company></Company>
|
2021-12-14 22:58:34 +00:00
|
|
|
|
<Version>2.0.0.0</Version>
|
2021-09-28 20:27:59 +00:00
|
|
|
|
<Description>Slice is Right.</Description>
|
|
|
|
|
<Copyright></Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/carvelli/SliceIsRight</PackageProjectUrl>
|
2021-09-29 11:59:50 +00:00
|
|
|
|
<Configurations>Release</Configurations>
|
2021-09-28 20:27:59 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2021-09-29 11:59:50 +00:00
|
|
|
|
<OutputPath>dist</OutputPath>
|
2021-09-29 13:27:47 +00:00
|
|
|
|
<GenerateDependencyFile>false</GenerateDependencyFile>
|
2021-09-28 20:27:59 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="SliceIsRight.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="DalamudPackager" Version="2.1.2" />
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
</Project>
|