18 lines
498 B
XML
18 lines
498 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>false</PublishAot>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="TagLibSharp" Version="2.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|