2021-07-05 13:20:06 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-10-04 21:50:44 -07:00
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
|
|
|
|
|
<DefineConstants>LINUX</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64'">
|
|
|
|
|
<DefineConstants>MAC</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
|
|
|
|
<DefineConstants>WINDOWS</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-07-05 13:20:06 -07:00
|
|
|
<ItemGroup>
|
2021-09-30 22:46:25 -07:00
|
|
|
<PackageReference Include="Aaru.CommonTypes" Version="5.3.0" />
|
|
|
|
|
<PackageReference Include="Aaru.Decoders" Version="5.3.0" />
|
|
|
|
|
<PackageReference Include="Aaru.Images" Version="5.3.0" />
|
2021-07-05 13:20:06 -07:00
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.12" />
|
|
|
|
|
<PackageReference Include="NWaves" Version="0.9.4" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\cscore\CSCore\CSCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|