- Suffix release tag support: folder name ending in -TAG prepends [TAG] to output filenames - Show name injection from parent folder for episode-only filenames (e.g. S01E01-Name.mkv) - Queue and logs display predicted output filename - Run button label reflects rename when applicable - Gray out main UI while strip/rename is in progress
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.3</Version>
|
|
<FileVersion>1.0.3.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>
|