Uh oh!
There was an error while loading. Please reload this page.
forked from MasterScott/DevTree
- Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDevTree.csproj
More file actions
Latest commit
33 lines (33 loc) · 1.35 KB
/
Copy pathDevTree.csproj
File metadata and controls
33 lines (33 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<DebugType>embedded</DebugType>
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<EmbedAllSources>true</EmbedAllSources>
<OutputPathCondition="'$(ExApiPluginOutputPath)' != ''">$(ExApiPluginOutputPath)$(MSBuildProjectName)</OutputPath>
</PropertyGroup>
<ItemGroup>
<ReferenceInclude="ExileCore">
<HintPath>$(exapiPackage)\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
<ReferenceInclude="GameOffsets">
<HintPath>$(exapiPackage)\GameOffsets.dll</HintPath>
<Private>False</Private>
</Reference>
<ReferenceInclude="ItemFilterLibrary">
<HintPath>$(exapiPackage)\ItemFilterLibrary.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReferenceInclude="Microsoft.CodeAnalysis.Scripting.Common"Version="5.0.0" />
<PackageReferenceInclude="Newtonsoft.Json"Version="13.0.3" />
<PackageReferenceInclude="ImGui.NET"Version="1.90.0.1" />
<PackageReferenceInclude="SharpDX"Version="4.2.0" />
<PackageReferenceInclude="SharpDX.Mathematics"Version="4.2.0" />
</ItemGroup>
</Project>