22 lines
812 B
XML
22 lines
812 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<BaseOutputPath>..\Build\</BaseOutputPath>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Qrakhen.Qamp.Core\Qrakhen.Qamp.Core.csproj" />
|
|
<ProjectReference Include="..\Qrakhen.Qamp.Digest\Qrakhen.Qamp.Digest.csproj" />
|
|
<ProjectReference Include="..\Qrakhen.Qamp.Memory\Qrakhen.Qamp.Memory.csproj" />
|
|
<ProjectReference Include="..\Qrakhen.Qamp.Reader\Qrakhen.Qamp.Reader.csproj" />
|
|
<ProjectReference Include="..\Qrakhen.Qamp.Runtime\Qrakhen.Qamp.Runtime.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|