BurntToast/BurntToast/BurntToast.csproj

44 lines
1.5 KiB
XML
Raw Normal View History

2021-04-06 14:47:32 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-02-14 00:44:55 +00:00
<TargetFramework>net7-windows</TargetFramework>
<RootNamespace>BurntToast</RootNamespace>
<AssemblyName>BurntToast</AssemblyName>
2021-04-06 14:47:32 +00:00
<Nullable>enable</Nullable>
2023-02-14 00:45:11 +00:00
<Version>1.2.6</Version>
2021-04-06 14:47:32 +00:00
<LangVersion>latest</LangVersion>
2021-09-20 18:26:42 +00:00
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2022-08-21 19:47:02 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
2021-04-06 14:47:32 +00:00
</PropertyGroup>
<ItemGroup>
2021-04-12 16:51:46 +00:00
<Reference Include="Dalamud">
2022-08-21 19:47:02 +00:00
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
2021-04-06 14:47:32 +00:00
<Private>False</Private>
</Reference>
2021-04-12 16:51:46 +00:00
<Reference Include="ImGui.NET">
2022-08-21 19:47:02 +00:00
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
2021-04-06 14:47:32 +00:00
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
2023-02-14 00:44:55 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.10"/>
<PackageReference Include="XivCommon" Version="7.0.0-alpha.1"/>
2021-04-06 14:47:32 +00:00
</ItemGroup>
</Project>