Implement update check on startup
[ArchiSteamFarm.git] / ArchiSteamFarm / ArchiSteamFarm.csproj
blob5a4561d7474ebc71efcc8d139b2a6475be5e2bb7
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3   <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4   <PropertyGroup>
5     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7     <ProjectGuid>{35AF7887-08B9-40E8-A5EA-797D8B60B30C}</ProjectGuid>
8     <OutputType>Exe</OutputType>
9     <AppDesignerFolder>Properties</AppDesignerFolder>
10     <RootNamespace>ArchiSteamFarm</RootNamespace>
11     <AssemblyName>ArchiSteamFarm</AssemblyName>
12     <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13     <FileAlignment>512</FileAlignment>
14     <IsWebBootstrapper>false</IsWebBootstrapper>
15     <PublishUrl>publish\</PublishUrl>
16     <Install>true</Install>
17     <InstallFrom>Disk</InstallFrom>
18     <UpdateEnabled>false</UpdateEnabled>
19     <UpdateMode>Foreground</UpdateMode>
20     <UpdateInterval>7</UpdateInterval>
21     <UpdateIntervalUnits>Days</UpdateIntervalUnits>
22     <UpdatePeriodically>false</UpdatePeriodically>
23     <UpdateRequired>false</UpdateRequired>
24     <MapFileExtensions>true</MapFileExtensions>
25     <ApplicationRevision>0</ApplicationRevision>
26     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27     <UseApplicationTrust>false</UseApplicationTrust>
28     <BootstrapperEnabled>true</BootstrapperEnabled>
29   </PropertyGroup>
30   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31     <PlatformTarget>AnyCPU</PlatformTarget>
32     <DebugSymbols>true</DebugSymbols>
33     <DebugType>full</DebugType>
34     <Optimize>false</Optimize>
35     <OutputPath>bin\Debug\</OutputPath>
36     <DefineConstants>DEBUG;TRACE</DefineConstants>
37     <ErrorReport>prompt</ErrorReport>
38     <WarningLevel>4</WarningLevel>
39   </PropertyGroup>
40   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41     <PlatformTarget>AnyCPU</PlatformTarget>
42     <DebugType>none</DebugType>
43     <Optimize>true</Optimize>
44     <OutputPath>bin\Release\</OutputPath>
45     <DefineConstants>
46     </DefineConstants>
47     <ErrorReport>prompt</ErrorReport>
48     <WarningLevel>4</WarningLevel>
49     <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
50     <DocumentationFile>
51     </DocumentationFile>
52     <Prefer32Bit>true</Prefer32Bit>
53   </PropertyGroup>
54   <ItemGroup>
55     <Reference Include="HtmlAgilityPack, Version=1.4.9.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
56       <HintPath>..\packages\HtmlAgilityPack.1.4.9\lib\Net45\HtmlAgilityPack.dll</HintPath>
57       <Private>True</Private>
58     </Reference>
59     <Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
60       <HintPath>..\packages\Newtonsoft.Json.8.0.1-beta1\lib\net45\Newtonsoft.Json.dll</HintPath>
61       <Private>True</Private>
62     </Reference>
63     <Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
64       <HintPath>..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
65       <Private>True</Private>
66     </Reference>
67     <Reference Include="SteamKit2, Version=1.6.5.29095, Culture=neutral, processorArchitecture=MSIL">
68       <HintPath>..\packages\SteamKit2.1.6.5\lib\net40\SteamKit2.dll</HintPath>
69       <Private>True</Private>
70     </Reference>
71     <Reference Include="System" />
72     <Reference Include="System.Core" />
73     <Reference Include="System.Xml.Linq" />
74     <Reference Include="System.Data.DataSetExtensions" />
75     <Reference Include="Microsoft.CSharp" />
76     <Reference Include="System.Data" />
77     <Reference Include="System.Net.Http" />
78     <Reference Include="System.Xml" />
79   </ItemGroup>
80   <ItemGroup>
81     <Compile Include="ArchiHandler.cs" />
82     <Compile Include="ArchiWebHandler.cs" />
83     <Compile Include="Bot.cs" />
84     <Compile Include="CardsFarmer.cs" />
85     <Compile Include="CMsgClientClanInviteAction.cs" />
86     <Compile Include="Logging.cs" />
87     <Compile Include="Program.cs" />
88     <Compile Include="Properties\AssemblyInfo.cs" />
89     <Compile Include="SteamItem.cs" />
90     <Compile Include="SteamTradeOffer.cs" />
91     <Compile Include="Trading.cs" />
92     <Compile Include="Utilities.cs" />
93   </ItemGroup>
94   <ItemGroup>
95     <None Include="App.config" />
96     <None Include="packages.config" />
97   </ItemGroup>
98   <ItemGroup>
99     <BootstrapperPackage Include=".NETFramework,Version=v4.5">
100       <Visible>False</Visible>
101       <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
102       <Install>true</Install>
103     </BootstrapperPackage>
104     <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
105       <Visible>False</Visible>
106       <ProductName>.NET Framework 3.5 SP1</ProductName>
107       <Install>false</Install>
108     </BootstrapperPackage>
109   </ItemGroup>
110   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
111   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
112        Other similar extension points exist, see Microsoft.Common.targets.
113   <Target Name="BeforeBuild">
114   </Target>
115   <Target Name="AfterBuild">
116   </Target>
117   -->
118 </Project>