-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathItemFilterLibrary.csproj
More file actions
32 lines (31 loc) · 1.18 KB
/
ItemFilterLibrary.csproj
File metadata and controls
32 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<PropertyGroup Condition="'$(SolutionName)' == 'ExileApi'">
<OutputPath>..\..\..\PoeHelper</OutputPath>
</PropertyGroup>
<ItemGroup Condition="'$(SolutionName)' == 'ExileApi'">
<ProjectReference Include="..\..\GameOffsets\GameOffsets.csproj" />
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(SolutionName)' != 'ExileApi'">
<Reference Include="ExileCore">
<HintPath>$(exapiPackage)\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="GameOffsets">
<HintPath>$(exapiPackage)\GameOffsets.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.3.7" />
</ItemGroup>
</Project>