Skip to content
This repository was archived by the owner on Apr 10, 2023. It is now read-only.

Commit 435a2a6

Browse files
committed
Initial Commit
0 parents  commit 435a2a6

File tree

5 files changed

+445
-0
lines changed

5 files changed

+445
-0
lines changed

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Jetbrain
2+
.idea/
3+
*.iml
4+
*.ipr
5+
*.user
6+
*.DotSettings.user
7+
8+
# VSCode
9+
.vscode/
10+
11+
# Local History for Visual Studio Code
12+
.history/
13+
14+
# Built Visual Studio Code Extensions
15+
*.vsix
16+
17+
# macOS
18+
19+
# General
20+
.DS_Store
21+
.AppleDouble
22+
.LSOverride
23+
24+
# Icon must end with two \r
25+
Icon
26+
27+
# Thumbnails
28+
._*
29+
30+
# Recycle Bin used on file shares
31+
$RECYCLE.BIN/
32+
33+
# Generic
34+
bin/
35+
out/
36+
obj/

AutoWaybackMachine.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net7.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Selenium.WebDriver" Version="4.6.0" />
12+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
13+
</ItemGroup>
14+
15+
</Project>

AutoWaybackMachine.sln

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoWaybackMachine", "AutoWaybackMachine.csproj", "{AE9CC22F-7456-47B5-BEBB-8A62FCC13795}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
EndGlobalSection
10+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
11+
{AE9CC22F-7456-47B5-BEBB-8A62FCC13795}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12+
{AE9CC22F-7456-47B5-BEBB-8A62FCC13795}.Debug|Any CPU.Build.0 = Debug|Any CPU
13+
{AE9CC22F-7456-47B5-BEBB-8A62FCC13795}.Release|Any CPU.ActiveCfg = Release|Any CPU
14+
{AE9CC22F-7456-47B5-BEBB-8A62FCC13795}.Release|Any CPU.Build.0 = Release|Any CPU
15+
EndGlobalSection
16+
EndGlobal

0 commit comments

Comments
 (0)