2018-05-22 16:45:33 -04:00
|
|
|
|
using SteamStorefrontAPI;
|
|
|
|
|
using SteamStorefrontAPI.Classes;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace SteamStorefrontConsole
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Task.Run(async () => await GetGame()).Wait();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static async Task GetGame()
|
|
|
|
|
{
|
2018-05-23 16:58:09 -04:00
|
|
|
|
//var steamApp = await AppDetails.GetAsync(637670);
|
|
|
|
|
//var steamApp = await AppDetails.GetAsync(443790);
|
2018-05-23 16:03:38 -04:00
|
|
|
|
//var steamApp = await AppDetails.GetAsync(460810, "JP");
|
2018-05-22 16:45:33 -04:00
|
|
|
|
|
2018-05-24 13:07:24 -04:00
|
|
|
|
var featured = await Featured.GetAsync();
|
2018-05-23 16:58:09 -04:00
|
|
|
|
|
|
|
|
|
//Console.WriteLine(featured);
|
2018-05-22 16:45:33 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|