mirror of
https://github.com/bellingcat/reddit-post-scraping-tool.git
synced 2026-06-08 03:28:30 +03:00
88 lines
3.1 KiB
XML
88 lines
3.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<StartupObject>RPST.My.MyApplication</StartupObject>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<MyType>WindowsForms</MyType>
|
|
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
|
|
<Company>Richard Mwewa</Company>
|
|
<Description>Retrieve Reddit posts that contain the specified keyword from a specified subreddit. </Description>
|
|
<Copyright>© 2023 Richard Mwewa. All rights reserved.</Copyright>
|
|
<PackageProjectUrl>https://github.com/bellingcat/reddit-post-scraping-tool</PackageProjectUrl>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/bellingcat/reddit-post-scraping-tool</RepositoryUrl>
|
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
<FileVersion>2.0.0.0</FileVersion>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
|
|
<Version>2.0.0</Version>
|
|
<PackageTags>reddit;scraper;reddit-scraper;osint</PackageTags>
|
|
<PackageReleaseNotes></PackageReleaseNotes>
|
|
<AnalysisLevel>6.0-recommended</AnalysisLevel>
|
|
<PackageId>RPST</PackageId>
|
|
<Authors>Richard Mwewa</Authors>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<Product>$(AssemblyName) (Reddit Post Scraping Tool)</Product>
|
|
<AssemblyName>RPST</AssemblyName>
|
|
<Title>Reddit Post Scraping Tool.</Title>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Resources\icon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Import Include="System.Data" />
|
|
<Import Include="System.Drawing" />
|
|
<Import Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="My Project\Application.Designer.vb">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Application.myapp</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="My Project\Resources.Designer.vb">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="My Project\Resources.resx">
|
|
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
|
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Update="My Project\Application.myapp">
|
|
<Generator>MyApplicationCodeGenerator</Generator>
|
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
|
</None>
|
|
<None Update="README.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
<None Update="Resources\icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|