forked from TehCheat/Stashie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stashie.csproj
109 lines (109 loc) · 4.52 KB
/
Stashie.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{EED0427D-D8EB-4EBC-9F6F-4AE49A83963E}</ProjectGuid>
<OutputType>Library</OutputType>
<NoStandardLibraries>false</NoStandardLibraries>
<AssemblyName>Stashie</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\..\PoeHelper\Plugins\Compiled\Stashie\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\..\PoeHelper\Plugins\Compiled\Stashie\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>Stashie</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Reference Include="ExileCore">
<HintPath>..\..\..\..\PoeHelper\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>..\..\..\..\PoeHelper\ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Numerics" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Filter\AffinityActiveFilter.cs" />
<Compile Include="FilterParameterCompare.cs" />
<Compile Include="FilterParser.cs" />
<Compile Include="FilterResult.cs" />
<Compile Include="Filter\AffinityIgnoreFilter.cs" />
<Compile Include="Filter\AnyInfluenceItemFilter.cs" />
<Compile Include="Filter\BaseFilter.cs" />
<Compile Include="Filter\BlightedMapFilter.cs" />
<Compile Include="Filter\CorruptedItemFilter.cs" />
<Compile Include="Filter\CrusaderItemFilter.cs" />
<Compile Include="Filter\CustomFilter.cs" />
<Compile Include="Filter\ElderGuardianMapFilter.cs" />
<Compile Include="Filter\ElderItemFiler.cs" />
<Compile Include="Filter\HunterItemFilter.cs" />
<Compile Include="Filter\IdentifiedItemFilter.cs" />
<Compile Include="Filter\IIFilter.cs" />
<Compile Include="Filter\RedeemerItemFilter.cs" />
<Compile Include="Filter\ShaperItemFilter.cs" />
<Compile Include="Filter\SynthesisedItemFilter.cs" />
<Compile Include="Filter\WarlordItemFilter.cs" />
<Compile Include="ItemData.cs" />
<Compile Include="ListIndexNode.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Refill.cs" />
<Compile Include="Stashie.cs" />
<Compile Include="StashieSettings.cs" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<PackageReference Include="InputSimulator">
<Version>1.0.4</Version>
</PackageReference>
<PackageReference Include="LinqFaster">
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.3</Version>
</PackageReference>
<PackageReference Include="SharpDX">
<Version>4.2.0</Version>
</PackageReference>
<PackageReference Include="SharpDX.Mathematics">
<Version>4.2.0</Version>
</PackageReference>
<PackageReference Include="Trinet.Core.IO.Ntfs">
<Version>4.0.0</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>