forked from Jessecar96/SteamBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SteamBot.csproj
72 lines (72 loc) · 2.95 KB
/
SteamBot.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E81DED36-EDF5-41A5-8666-A3A0C581762F}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Src</RootNamespace>
<AssemblyName>Src</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>Bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>Bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Net" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Xaml" />
<Reference Include="System.Numerics" />
<Reference Include="System.Management" />
<Reference Include="System.Web" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="Src/AssemblyInfo.cs" />
<Compile Include="Src/Bot.cs" />
<Compile Include="Src/BotInfo.cs" />
<Compile Include="Src/Configuration.cs" />
<Compile Include="Src/Inventory.cs" />
<Compile Include="Src/Log.cs" />
<Compile Include="Src/Program.cs" />
<Compile Include="Src/Schema.cs" />
<Compile Include="Src/SteamWeb.cs" />
<Compile Include="Src/Trade.cs" />
<Compile Include="Src/TradeEnterTradeListener.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\Lib\Newtonsoft.Json\Src\Newtonsoft.Json\Newtonsoft.Json.csproj">
<Project>{A9AE40FF-1A21-414A-9FE7-3BE13644CC6D}</Project>
<Name>Newtonsoft.Json</Name>
</ProjectReference>
<ProjectReference Include="..\Lib\protobuf-net\protobuf-net\protobuf-net.csproj">
<Project>{8374E4D7-2A91-48F1-9360-09B09CF27C3F}</Project>
<Name>protobuf-net</Name>
</ProjectReference>
<ProjectReference Include="..\Lib\SteamKit2\SteamKit2\SteamKit2.csproj">
<Project>{BEB5BF07-BB56-402A-97A3-A41C6444C6A5}</Project>
<Name>SteamKit2</Name>
</ProjectReference>
</ItemGroup>
</Project>