-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scraper.csproj
53 lines (49 loc) · 1.84 KB
/
Scraper.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationIcon>Assets\profile.ico</ApplicationIcon>
<Copyright>undeƒined (0x78f1935)</Copyright>
<PackageProjectUrl>https://github.com/0x78f1935/Scraper</PackageProjectUrl>
<PackageIcon>profile.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/0x78f1935/Scraper</RepositoryUrl>
<PackageTags>scraper;crawler;regex;parallel</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<AssemblyName>Scrawler</AssemblyName>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<Authors>undeƒined (0x78f1935)</Authors>
<Company>undeƒined (0x78f1935)</Company>
<Description>A simplistic web scraper which aims to make scrapping webpages and crawling links faster by utilizing parallel threading.</Description>
<Title>Scraper</Title>
<RepositoryType>git</RepositoryType>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\profile.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser.NS20" Version="2.3.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\profile.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="Assets\profile.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>