2021-06-29 13:49:37 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-03-19 17:07:27 -03:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
2021-03-30 20:29:50 -03:00
|
|
|
<DebugType>embedded</DebugType>
|
2021-03-19 17:07:27 -03:00
|
|
|
</PropertyGroup>
|
2021-06-29 13:57:11 -07:00
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)|$(Configuration)' == 'win-x64|Debug'">
|
2021-06-29 13:49:37 -07:00
|
|
|
<DefineConstants>WindowsDebug</DefineConstants>
|
2021-03-19 17:07:27 -03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="**\*.xaml.cs">
|
|
|
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<AvaloniaResource Include="**\*.xaml" Exclude="bin\**;obj\**">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</AvaloniaResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="0.9.12" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.9.12" />
|
|
|
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.12" />
|
|
|
|
|
<PackageReference Include="NWaves" Version="0.9.4" />
|
|
|
|
|
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="1.68.3" />
|
|
|
|
|
<PackageReference Include="Avalonia.Skia.Linux.Natives" Version="1.68.0.2" ExcludeAssets="all" />
|
|
|
|
|
<PackageReference Include="SkiaSharp" Version="1.68.3" />
|
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.5.12" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Aaru\Aaru.Images\Aaru.Images.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru\Aaru.CommonTypes\Aaru.CommonTypes.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Aaru\Aaru.Decoders\Aaru.Decoders.csproj" />
|
|
|
|
|
<ProjectReference Include="..\cscore\CSCore\CSCore.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AvaloniaResource Include="Assets\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|