Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #634 from WildCard65/nitpicks
Browse files Browse the repository at this point in the history
Nitpicks
  • Loading branch information
BlueRaja committed Oct 4, 2014
2 parents 8c63e89 + 8d24d6d commit 74295f7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 85 deletions.
72 changes: 0 additions & 72 deletions SteamBot.csproj

This file was deleted.

8 changes: 4 additions & 4 deletions SteamBot/ExampleBot.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@
<Externalconsole>True</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
</Reference>
<Reference Include="SteamKit2, Version=1.5.0.29553, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="SteamKit2, Version=1.5.1.41089, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SteamKit2.1.5.0\lib\net40\SteamKit2.dll</HintPath>
<HintPath>..\packages\SteamKit2.1.5.1\lib\net40\SteamKit2.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Drawing" />
Expand Down
4 changes: 2 additions & 2 deletions SteamBot/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" requireReinstallation="True" />
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net40" />
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" />
<package id="SteamKit2" version="1.5.0" targetFramework="net40" />
<package id="SteamKit2" version="1.5.1" targetFramework="net40" />
</packages>
2 changes: 1 addition & 1 deletion SteamTrade/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public class Item
public byte Level { get; set; }

[JsonProperty("quality")]
public string Quality { get; set; }
public int Quality { get; set; }

[JsonProperty("quantity")]
public int RemainingUses { get; set; }
Expand Down
8 changes: 4 additions & 4 deletions SteamTrade/SteamTrade.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
<HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
</Reference>
<Reference Include="SteamKit2, Version=1.5.0.29553, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="SteamKit2, Version=1.5.1.41089, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SteamKit2.1.5.0\lib\net40\SteamKit2.dll</HintPath>
<HintPath>..\packages\SteamKit2.1.5.1\lib\net40\SteamKit2.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
4 changes: 2 additions & 2 deletions SteamTrade/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="net40" requireReinstallation="True" />
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net40" />
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" />
<package id="SteamKit2" version="1.5.0" targetFramework="net40" />
<package id="SteamKit2" version="1.5.1" targetFramework="net40" />
</packages>

0 comments on commit 74295f7

Please sign in to comment.