SliceIsRight/SliceIsRight.csproj

77 lines
2.5 KiB
XML
Raw Normal View History

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>
2023-02-06 20:15:07 +00:00
<Version>6.1</Version>
2021-09-28 20:27:59 +00:00
<Description>Slice is Right.</Description>
<Copyright></Copyright>
2021-12-15 22:48:37 +00:00
<PackageProjectUrl>https://github.com/carvelli/Slice-Is-Right</PackageProjectUrl>
<Configurations>Release</Configurations>
2021-09-28 20:27:59 +00:00
</PropertyGroup>
<PropertyGroup>
2023-01-11 18:04:53 +00:00
<TargetFramework>net7.0-windows</TargetFramework>
2021-09-28 20:27:59 +00:00
<Platforms>x64</Platforms>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>dist</OutputPath>
2021-09-29 13:27:47 +00:00
<GenerateDependencyFile>false</GenerateDependencyFile>
2021-09-28 20:27:59 +00:00
</PropertyGroup>
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
2023-01-11 18:04:53 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.10" />
2021-09-28 20:27:59 +00:00
<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>
2021-12-15 18:31:58 +00:00
<ItemGroup>
<None Update="SliceIsRight.yaml">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
2022-11-30 11:33:01 +00:00
<Target Name="RenameLatestZip" AfterTargets="PackagePlugin">
<Exec Command="rename $(OutDir)$(AssemblyName)\latest.zip $(AssemblyName)-$(Version).zip" />
</Target>
2021-09-28 20:27:59 +00:00
</Project>