forked from IlliumIv/Stashie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStashie.csproj
112 lines (112 loc) · 5.03 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
110
111
112
<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>{B8C6B3D1-8D81-4350-AECE-682C96ABA88A}</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>..\..\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>..\..\..\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>..\..\..\..\PoeHelper\ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="JM.LinqFaster">
<HintPath>..\..\..\..\PoeHelper\JM.LinqFaster.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="SharpDX, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b4dcf0f35e5521f1, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\SharpDX.4.2.0\lib\net45\SharpDX.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="SharpDX.Mathematics, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b4dcf0f35e5521f1, processorArchitecture=MSIL">
<HintPath>..\..\..\packages\SharpDX.Mathematics.4.2.0\lib\net45\SharpDX.Mathematics.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Buffers">
<HintPath>..\..\..\System.Buffers.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe">
<HintPath>..\..\..\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
<Private>False</Private>
</Reference>
<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>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
<ProjectExtensions>
<VisualStudio AllowExistingFolder="true" />
</ProjectExtensions>
</Project>