Skip to content

Commit

Permalink
MMOGAScraper is now MMOGANet, a better name (at least I think that)
Browse files Browse the repository at this point in the history
  • Loading branch information
liebki committed Aug 12, 2022
1 parent 6d19eb0 commit 52627c8
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 7 deletions.
11 changes: 10 additions & 1 deletion MMOGAScraper.sln → MMOGANet.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MMOGAScraper", "MMOGAScraper\MMOGAScraper.csproj", "{2832ED59-5C50-4C02-944F-750F209EB415}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MMOGANet", "MMOGANet\MMOGANet.csproj", "{2832ED59-5C50-4C02-944F-750F209EB415}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MMOGANetDemo", "MMOGANetDemo\MMOGANetDemo.csproj", "{D8E49491-9940-4715-8EBD-3203A3299F7F}"
ProjectSection(ProjectDependencies) = postProject
{2832ED59-5C50-4C02-944F-750F209EB415} = {2832ED59-5C50-4C02-944F-750F209EB415}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -15,6 +20,10 @@ Global
{2832ED59-5C50-4C02-944F-750F209EB415}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2832ED59-5C50-4C02-944F-750F209EB415}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2832ED59-5C50-4C02-944F-750F209EB415}.Release|Any CPU.Build.0 = Release|Any CPU
{D8E49491-9940-4715-8EBD-3203A3299F7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D8E49491-9940-4715-8EBD-3203A3299F7F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D8E49491-9940-4715-8EBD-3203A3299F7F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D8E49491-9940-4715-8EBD-3203A3299F7F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,7 @@ private static string FilterRequirementsData(string input, bool small)
{
input = input.Replace("Betriebssystem:", " Betriebssystem:");
}
input = input.Replace("Prozessor:", " Prozessor:").Replace("Arbeitsspeicher:", " Arbeitsspeicher:").Replace("Grafikkarte:", " Grafikkarte:").Replace("Speicherplatz:", " Speicherplatz:").Replace("Breitband", " Breitband");
return input;
return input.Replace("Prozessor:", " Prozessor:").Replace("Arbeitsspeicher:", " Arbeitsspeicher:").Replace("Grafikkarte:", " Grafikkarte:").Replace("Speicherplatz:", " Speicherplatz:").Replace("Breitband", " Breitband");
}

internal static int CalculateQueryPageNumber(HtmlDocument doc)
Expand Down
File renamed without changes.
15 changes: 15 additions & 0 deletions MMOGANetDemo/MMOGANetDemo.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>MMOGANetDemo.Program</StartupObject>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MMOGANet\MMOGANet.csproj" />
</ItemGroup>

</Project>
6 changes: 4 additions & 2 deletions MMOGAScraper/Program.cs → MMOGANetDemo/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
namespace MMOGAScraper
using MMOGAScraper;

namespace MMOGANetDemo
{
internal class Program
public class Program
{
public static void Main()
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MMOGA Product Scraper (API)
# MMOGANet (Scraper for mmoga)

##### Projekt von https://github.com/liebki

Expand Down

0 comments on commit 52627c8

Please sign in to comment.