-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSyndicateHelper.csproj
More file actions
36 lines (36 loc) · 1.22 KB
/
SyndicateHelper.csproj
File metadata and controls
36 lines (36 loc) · 1.22 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
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<EmbedAllSources>true</EmbedAllSources>
</PropertyGroup>
<ItemGroup>
<Reference Include="ExileCore">
<HintPath>..\..\..\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="GameOffsets">
<HintPath>..\..\..\GameOffsets.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Reference Include="ImGui.NET">
<HintPath>..\..\..\ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\..\..\Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="SharpDX.Mathematics">
<HintPath>..\..\..\SharpDX.Mathematics.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>