forked from syrairc/Stashie
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStashie.csproj
More file actions
67 lines (67 loc) · 2.23 KB
/
Stashie.csproj
File metadata and controls
67 lines (67 loc) · 2.23 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<EnableDynamicLoading>true</EnableDynamicLoading>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<EmbedAllSources>true</EmbedAllSources>
<OutputPath>$(exapiPackage)\Plugins\Compiled\Stashie\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>
cd "$(OutputPath)"
for /r %%i in (*.dll) do (
if not "%%~nxi" == "Stashie.dll" (
echo Deleting "%%i"
del /q "%%i"
)
)
for /d /r %%i in (*) do (
if not "%%~nxi" == "Stashie" (
echo Deleting directory "%%i"
rd /s /q "%%i"
)
)
</PostBuildEvent>
</PropertyGroup>
<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>
<Reference Include="ImGui.NET">
<HintPath>$(exapiPackage)\ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(exapiPackage)\Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="SharpDX">
<HintPath>$(exapiPackage)\SharpDX.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="SharpDX.Mathematics">
<HintPath>$(exapiPackage)\SharpDX.Mathematics.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ItemFilterLibrary">
<HintPath>$(exapiPackage)\ItemFilterLibrary.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Example Filters\" />
</ItemGroup>
</Project>