mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-20 15:59:47 -06:00
55 lines
4.4 KiB
XML
55 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-16"?><Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFramework>net6.0</TargetFramework>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<Nullable>enable</Nullable>
|
||
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
|
||
<PublishSingleFile>true</PublishSingleFile>
|
||
<FileVersion>0.5.2.211</FileVersion>
|
||
<ProductVersion>0.5.2.211</ProductVersion>
|
||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||
<PublishTrimmed>true</PublishTrimmed>
|
||
<Company>FileFlows</Company>
|
||
<Authors>John Andrews</Authors>
|
||
<Product>Meta Nodes</Product>
|
||
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
||
<Description>A plugin that contains Meta information nodes used to lookup meta information on files.
|
||
|
||
Contains nodes to lookup movie information from TheMovieDB, and music information from ID3 tags inside the file.</Description>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
<NoWarn>1701;1702;CS8618;CS8601;CS8602;CS8603;CS8604;CS8618;CS8625;CS8765;CS8767;CS8618l;CS8600</NoWarn>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
<NoWarn>1701;1702;CS8618;CS8601;CS8602;CS8603;CS8604;CS8618;CS8625;CS8765;CS8767;CS8618l;CS8600</NoWarn>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
|
||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
||
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Content Include="MetaNodes.en.json">
|
||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
</Content>
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="ID3" Version="0.6.0" />
|
||
<PackageReference Include="MetaBrainz.MusicBrainz" Version="4.0.1" />
|
||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||
</ItemGroup>
|
||
|
||
<ItemGroup>
|
||
<Reference Include="Plugin">
|
||
<HintPath>..\FileFlows.Plugin.dll</HintPath>
|
||
<SpecificVersion>False</SpecificVersion>
|
||
</Reference>
|
||
</ItemGroup>
|
||
</Project>
|