Handle [TAG] NN episode-only filenames: when a file already carries a bracket tag prefix followed directly by an episode number (e.g. [WBDP] 03 - Deus Vult), inject the show name from the parent folder between the tag and the episode part. Also update ExtractShowName to handle bracket-style folder names (text before the first [ is the show name).
31 lines
766 B
XML
31 lines
766 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyName>Futonizer</AssemblyName>
|
|
<RootNamespace>Futonizer</RootNamespace>
|
|
<Version>1.0.5</Version>
|
|
<FileVersion>1.0.5.0</FileVersion>
|
|
<ApplicationIcon>Assets\app.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="WPF-UI" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Remove="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Assets\app.png" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|