25 lines
590 B
XML
25 lines
590 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFramework>net6.0-windows</TargetFramework>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="AAXClean.Codecs" Version="0.2.10" />
|
||
</ItemGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
<DebugType>embedded</DebugType>
|
||
</PropertyGroup>
|
||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
<DebugType>embedded</DebugType>
|
||
</PropertyGroup>
|
||
|
||
|
||
<ItemGroup>
|
||
<ProjectReference Include="..\FileManager\FileManager.csproj" />
|
||
</ItemGroup>
|
||
|
||
</Project>
|