-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPickIt.csproj
More file actions
28 lines (28 loc) · 1.02 KB
/
PickIt.csproj
File metadata and controls
28 lines (28 loc) · 1.02 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<PlatformTarget>x64</PlatformTarget>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<ItemGroup>
<Reference Include="ExileCore2">
<HintPath>$(exileCore2Package)\ExileCore2.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="GameOffsets2">
<HintPath>$(exileCore2Package)\GameOffsets2.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ItemFilterLibrary">
<HintPath>$(exileCore2Package)\ItemFilterLibrary.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ImGui.NET" Version="1.90.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>