-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsanderling-v8.csproj
111 lines (102 loc) · 4.17 KB
/
sanderling-v8.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
<StartupObject>sanderling_v8.Program</StartupObject>
<Platforms>x64</Platforms>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
<ProjectGuid>{0F0270BE-4C44-4E56-8ACE-C37F33F3745E}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>sanderling_v8</RootNamespace>
<AssemblyName>sanderling-v8</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<PlatformTarget>x64</PlatformTarget>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<!-- sanderling upstream imports -->
<ItemGroup>
<PackageReference Include="Fasterflect" Version="2.1.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1.0" />
<PackageReference Include="protobuf-net" Version="2.1.0.0" />
<PackageReference Include="Castle.Core" Version="3.3.0.0" />
</ItemGroup>
<!-- sanderling imports-->
<ItemGroup>
<Reference Include="Bib3">
<HintPath>lib\Bib3.dll</HintPath>
</Reference>
<Reference Include="BotEngine.Common">
<HintPath>lib\BotEngine.Common.dll</HintPath>
</Reference>
<Reference Include="BotEngine.Interface">
<HintPath>lib\BotEngine.Interface.dll</HintPath>
</Reference>
<Reference Include="Sanderling">
<HintPath>lib\Sanderling.dll</HintPath>
</Reference>
<Reference Include="Sanderling.Interface">
<HintPath>lib\Sanderling.Interface.dll</HintPath>
</Reference>
<Reference Include="Sanderling.MemoryReading">
<HintPath>lib\Sanderling.MemoryReading.dll</HintPath>
</Reference>
</ItemGroup>
<!-- espresso imports -->
<ItemGroup>
<Reference Include="EspressoCore">
<HintPath>lib\EspressoCore.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="App.config"><SubType>Designer</SubType></None>
</ItemGroup>
<!-- not working?-->
<Target Name="AfterBuild">
<Copy SourceFiles="lib/libespr.dll" DestinationFolder="$(OutputPath)" />
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>