-
Notifications
You must be signed in to change notification settings - Fork 8
/
ReAgent.csproj
43 lines (43 loc) · 1.55 KB
/
ReAgent.csproj
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
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<EnableDynamicLoading>true</EnableDynamicLoading>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>embedded</DebugType>
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<EmbedAllSources>true</EmbedAllSources>
</PropertyGroup>
<ItemGroup>
<Compile Remove="docs\**" />
<EmbeddedResource Remove="docs\**" />
<None Remove="docs\**" />
</ItemGroup>
<ItemGroup>
<None Remove="CustomAilments.json" />
</ItemGroup>
<ItemGroup>
<Content Include="CustomAilments.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<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="ImGui.NET" Version="1.90.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.11.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.3.7" />
</ItemGroup>
</Project>