|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<!-- This .csproj is part of a mono-repo solution and shares dependencies with other projects. --> |
| 3 | +<Project Sdk="Dalamud.NET.Sdk/13.1.0"> |
| 4 | + <!-- Project settings --> |
| 5 | + <PropertyGroup> |
| 6 | + <AssemblyName>LeveHelper</AssemblyName> |
| 7 | + <Version>2.5.4</Version> |
| 8 | + <OutputPath>..\bin\</OutputPath> |
| 9 | + <DefineConstants>$(DefineConstants);AUTOCTOR_EMBED_ATTRIBUTES</DefineConstants> |
| 10 | + </PropertyGroup> |
| 11 | + |
| 12 | + <!-- Dalamud.NET.Sdk settings --> |
| 13 | + <PropertyGroup> |
| 14 | + <Use_Dalamud_Newtonsoft_Json>false</Use_Dalamud_Newtonsoft_Json> |
| 15 | + <Use_Dalamud_FFXIVClientStructs>false</Use_Dalamud_FFXIVClientStructs> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <!-- Translations --> |
| 19 | + <ItemGroup Condition="Exists('Translations.json')"> |
| 20 | + <EmbeddedResource Include="Translations.json" /> |
| 21 | + </ItemGroup> |
| 22 | + |
| 23 | + <!-- Licenses --> |
| 24 | + <ItemGroup Condition="Exists('LICENSES.md')"> |
| 25 | + <EmbeddedResource Include="LICENSES.md" /> |
| 26 | + <None Include="LICENSES.md" CopyToOutputDirectory="PreserveNewest" /> |
| 27 | + </ItemGroup> |
| 28 | + |
| 29 | + <!-- NuGet dependencies --> |
| 30 | + <ItemGroup> |
| 31 | + <PackageReference Include="AutoCtor" Version="2.8.1" PrivateAssets="all" ExcludeAssets="compile;runtime" /> |
| 32 | + <PackageReference Include="Injectio" Version="5.0.0" PrivateAssets="all" /> |
| 33 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.8" /> |
| 34 | + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.8" /> |
| 35 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.8" /> |
| 36 | + <PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.183" PrivateAssets="All" /> |
| 37 | + <PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <!-- FFXIVClientStructs --> |
| 41 | + <PropertyGroup> |
| 42 | + <InteropGenerator_InteropNamespace>$(AssemblyName)</InteropGenerator_InteropNamespace> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <CompilerVisibleProperty Include="InteropGenerator_InteropNamespace" /> |
| 47 | + <ProjectReference Include="..\..\libs\FFXIVClientStructs\InteropGenerator\InteropGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> |
| 48 | + <ProjectReference Include="..\..\libs\FFXIVClientStructs\FFXIVClientStructs\FFXIVClientStructs.csproj" Private="True" /> |
| 49 | + <ProjectReference Include="..\..\libs\FFXIVClientStructs\InteropGenerator.Runtime\InteropGenerator.Runtime.csproj" Private="True" /> |
| 50 | + </ItemGroup> |
| 51 | + |
| 52 | + <!-- HaselCommon --> |
| 53 | + <ItemGroup> |
| 54 | + <ProjectReference Include="..\..\libs\HaselCommon\HaselCommon\HaselCommon.csproj" /> |
| 55 | + </ItemGroup> |
| 56 | +</Project> |
0 commit comments