CurrencyAlertClassic/CurrencyAlert/CurrencyAlert.csproj

85 lines
2.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2021-08-26 14:11:18 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2022-09-14 16:35:53 +00:00
<PropertyGroup>
2023-10-13 09:38:52 +00:00
<AssemblyName>CurrencyAlertClassic</AssemblyName>
2023-01-14 12:19:51 +00:00
<Version>0.5.0.1</Version>
2022-09-14 16:35:53 +00:00
<Description>Currency Alert</Description>
<PackageProjectUrl>https://github.com/Lharz/xiv-currency-alert</PackageProjectUrl>
</PropertyGroup>
2021-08-26 14:11:18 +00:00
2022-09-14 16:35:53 +00:00
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
2022-09-14 16:35:53 +00:00
<Platforms>x64</Platforms>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2021-08-26 14:11:18 +00:00
2022-09-14 16:35:53 +00:00
<PropertyGroup>
<DalamudLibPath>$(appdata)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
<RepositoryUrl>https://github.com/Lharz/xiv-currency-alert</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<BaseOutputPath>bin\</BaseOutputPath>
</PropertyGroup>
2021-08-26 14:11:18 +00:00
2022-09-14 16:35:53 +00:00
<ItemGroup>
2023-10-13 09:38:52 +00:00
<PackageReference Include="DalamudPackager" Version="2.1.12" />
2022-09-14 16:35:53 +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>
<ItemGroup>
<Content Include="images\**" Link="images\%(RecursiveDir)\%(Filename)%(Extension)" CopyToOutputDirectory="Always" />
</ItemGroup>
2021-08-26 14:11:18 +00:00
<ItemGroup>
<ProjectReference Include="..\KamiLib\KamiLib.csproj" />
</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>
2021-08-26 14:11:18 +00:00
</Project>