mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
57 lines
3.0 KiB
XML
57 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<OutputPath>bin/</OutputPath>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Core\Artemis.Core.csproj" />
|
|
<ProjectReference Include="..\Artemis.UI.Shared\Artemis.UI.Shared.csproj" />
|
|
<ProjectReference Include="..\Artemis.VisualScripting\Artemis.VisualScripting.csproj" />
|
|
<ProjectReference Include="..\Artemis.WebClient.Updating\Artemis.WebClient.Updating.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.AvaloniaEdit" Version="0.10.12.2" />
|
|
<PackageReference Include="Avalonia.Controls.PanAndZoom" Version="10.14.0" />
|
|
<PackageReference Include="Avalonia.Controls.Skia" Version="0.10.16" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="0.10.18" />
|
|
<PackageReference Include="DryIoc.dll" Version="5.3.1" />
|
|
<PackageReference Include="DynamicData" Version="7.9.14" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="1.4.1" />
|
|
<PackageReference Include="Flurl.Http" Version="3.2.4" />
|
|
<PackageReference Include="Live.Avalonia" Version="1.3.1" />
|
|
<PackageReference Include="Markdown.Avalonia.Tight" Version="0.10.13" />
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="1.1.10" />
|
|
<PackageReference Include="Octopus.Octodiff" Version="2.0.100" />
|
|
<PackageReference Include="ReactiveUI" Version="17.1.50" />
|
|
<PackageReference Include="ReactiveUI.Validation" Version="2.2.1" />
|
|
<PackageReference Include="RGB.NET.Core" Version="2.0.0-prerelease.17" />
|
|
<PackageReference Include="RGB.NET.Layout" Version="2.0.0-prerelease.17" />
|
|
<PackageReference Include="SkiaSharp" Version="2.88.1-preview.108" />
|
|
<PackageReference Include="Splat.DryIoc" Version="14.6.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Screens\Settings\Tabs\ReleasesTabView.axaml.cs">
|
|
<DependentUpon>UpdatingTabView.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Screens\Settings\Updating\ReleaseView.axaml.cs">
|
|
<DependentUpon>UpdatingTabView.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project> |