Skip to content

Commit 95dfd07

Browse files
authored
Add files via upload
1 parent ecafbe4 commit 95dfd07

14 files changed

+850
-0
lines changed

src/AmazonChecker.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.10.35013.160
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "AmazonChecker", "AmazonChecker.vbproj", "{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {81408423-7A9E-43D4-B5DD-C48A3EAEAB47}
24+
EndGlobalSection
25+
EndGlobal

src/AmazonChecker.vbproj

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" 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>{4C197DC4-7847-4C20-BC9E-B16ED0424BC7}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<StartupObject>AmazonChecker.My.MyApplication</StartupObject>
10+
<RootNamespace>AmazonChecker</RootNamespace>
11+
<AssemblyName>AmazonChecker</AssemblyName>
12+
<FileAlignment>512</FileAlignment>
13+
<MyType>WindowsForms</MyType>
14+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
15+
<Deterministic>true</Deterministic>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PlatformTarget>AnyCPU</PlatformTarget>
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<DefineDebug>true</DefineDebug>
22+
<DefineTrace>true</DefineTrace>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DocumentationFile>AmazonChecker.xml</DocumentationFile>
25+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<DebugType>pdbonly</DebugType>
30+
<DefineDebug>false</DefineDebug>
31+
<DefineTrace>true</DefineTrace>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DocumentationFile>AmazonChecker.xml</DocumentationFile>
35+
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
36+
</PropertyGroup>
37+
<PropertyGroup>
38+
<OptionExplicit>On</OptionExplicit>
39+
</PropertyGroup>
40+
<PropertyGroup>
41+
<OptionCompare>Binary</OptionCompare>
42+
</PropertyGroup>
43+
<PropertyGroup>
44+
<OptionStrict>Off</OptionStrict>
45+
</PropertyGroup>
46+
<PropertyGroup>
47+
<OptionInfer>On</OptionInfer>
48+
</PropertyGroup>
49+
<ItemGroup>
50+
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
51+
<HintPath>packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
52+
</Reference>
53+
<Reference Include="System" />
54+
<Reference Include="System.Data" />
55+
<Reference Include="System.Deployment" />
56+
<Reference Include="System.Drawing" />
57+
<Reference Include="System.IO.Compression" />
58+
<Reference Include="System.Windows.Forms" />
59+
<Reference Include="System.Xml" />
60+
<Reference Include="System.Core" />
61+
<Reference Include="System.Xml.Linq" />
62+
<Reference Include="System.Data.DataSetExtensions" />
63+
<Reference Include="System.Net.Http" />
64+
<Reference Include="UndetectedChromeDriver, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
65+
<HintPath>packages\Selenium.UndetectedChromeDriver.1.1.3\lib\net45\UndetectedChromeDriver.dll</HintPath>
66+
</Reference>
67+
<Reference Include="WebDriver, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
68+
<HintPath>packages\Selenium.WebDriver.4.1.1\lib\net45\WebDriver.dll</HintPath>
69+
</Reference>
70+
</ItemGroup>
71+
<ItemGroup>
72+
<Import Include="Microsoft.VisualBasic" />
73+
<Import Include="System" />
74+
<Import Include="System.Collections" />
75+
<Import Include="System.Collections.Generic" />
76+
<Import Include="System.Data" />
77+
<Import Include="System.Drawing" />
78+
<Import Include="System.Diagnostics" />
79+
<Import Include="System.Windows.Forms" />
80+
<Import Include="System.Linq" />
81+
<Import Include="System.Xml.Linq" />
82+
<Import Include="System.Threading.Tasks" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<Compile Include="MainForm.vb">
86+
<SubType>Form</SubType>
87+
</Compile>
88+
<Compile Include="MainForm.Designer.vb">
89+
<DependentUpon>MainForm.vb</DependentUpon>
90+
<SubType>Form</SubType>
91+
</Compile>
92+
<Compile Include="My Project\AssemblyInfo.vb" />
93+
<Compile Include="My Project\Application.Designer.vb">
94+
<AutoGen>True</AutoGen>
95+
<DependentUpon>Application.myapp</DependentUpon>
96+
</Compile>
97+
<Compile Include="My Project\Resources.Designer.vb">
98+
<AutoGen>True</AutoGen>
99+
<DesignTime>True</DesignTime>
100+
<DependentUpon>Resources.resx</DependentUpon>
101+
</Compile>
102+
<Compile Include="My Project\Settings.Designer.vb">
103+
<AutoGen>True</AutoGen>
104+
<DependentUpon>Settings.settings</DependentUpon>
105+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
106+
</Compile>
107+
</ItemGroup>
108+
<ItemGroup>
109+
<EmbeddedResource Include="MainForm.resx">
110+
<DependentUpon>MainForm.vb</DependentUpon>
111+
</EmbeddedResource>
112+
<EmbeddedResource Include="My Project\Resources.resx">
113+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
114+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
115+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
116+
<SubType>Designer</SubType>
117+
</EmbeddedResource>
118+
</ItemGroup>
119+
<ItemGroup>
120+
<None Include="My Project\Application.myapp">
121+
<Generator>MyApplicationCodeGenerator</Generator>
122+
<LastGenOutput>Application.Designer.vb</LastGenOutput>
123+
</None>
124+
<None Include="My Project\Settings.settings">
125+
<Generator>SettingsSingleFileGenerator</Generator>
126+
<CustomToolNamespace>My</CustomToolNamespace>
127+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
128+
</None>
129+
<None Include="App.config" />
130+
<None Include="packages.config" />
131+
</ItemGroup>
132+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
133+
</Project>

src/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>

src/MainForm.Designer.vb

Lines changed: 132 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)