-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIMDb.vbproj
73 lines (66 loc) · 2.55 KB
/
IMDb.vbproj
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>IMDb</RootNamespace>
<!--<TargetFramework>netstandard2.0;net45</TargetFramework>-->
<TargetFrameworks>net7.0</TargetFrameworks>
<Version>1.0.9</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>IMDb API (free)</Title>
<Copyright>Domenico Catalano</Copyright>
<PackageTags>imdb; api; scraping; movie; actor; imdb-scraper;</PackageTags>
<Description>The free IMDb API is your cinematic information hub. Access movie, TV series, and cast details in JSON format, including movie specs, images, posters, trailers, ratings and more with ease. Dive into the world of cinema effortlessly.</Description>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
<PackageIcon>IMDb.png</PackageIcon>
<AssemblyVersion>1.0.7</AssemblyVersion>
<FileVersion>1.0.7</FileVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cata76/IMDb</RepositoryUrl>
<ApplicationIcon>Icons\IMDb.ico</ApplicationIcon>
<PackageProjectUrl>https://github.com/cata76/IMDb</PackageProjectUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageLicenseFile>license.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<Content Include="Icons\IMDb.ico" />
<Content Include="Icons\IMDb.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Content>
<Content Include="license.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Content>
<Content Include="readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.54" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<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="Icons\IMDb.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="license.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>