mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Settings - Changed where panels start scrolling Home - Clip cards to bounds Sidebar - Added category creation/renaming Debugger - Fixed existing window focus Tray icon - Implemented all functionality
52 lines
2.3 KiB
XML
52 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<OutputPath>bin\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DocumentationFile>C:\Repos\Artemis\src\Artemis.UI.Avalonia.Shared\Artemis.UI.Avalonia.Shared.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="Artemis.UI.Avalonia.Shared.csproj.DotSettings" />
|
|
<None Remove="Artemis.UI.Shared.csproj.DotSettings" />
|
|
<None Remove="DefaultTypes\DataModel\Display\DefaultDataModelDisplayView.xaml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.10" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.10" />
|
|
<PackageReference Include="Avalonia.Svg.Skia" Version="0.10.10" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="0.10.10.4" />
|
|
<PackageReference Include="Avalonia.Xaml.Interactions" Version="0.10.10.4" />
|
|
<PackageReference Include="Avalonia.Xaml.Interactivity" Version="0.10.10.4" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="1.1.6" />
|
|
<PackageReference Include="Material.Icons.Avalonia" Version="1.0.2" />
|
|
<PackageReference Include="ReactiveUI.Validation" Version="2.2.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Page Include="DefaultTypes\DataModel\Display\DefaultDataModelDisplayView.xaml">
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Artemis.Core\Artemis.Core.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Material.Icons.Avalonia">
|
|
<HintPath>..\..\..\..\Users\Robert\.nuget\packages\material.icons.avalonia\1.0.2\lib\netstandard2.0\Material.Icons.Avalonia.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="RGB.NET.Core">
|
|
<HintPath>..\..\..\..\RGB.NET\bin\net5.0\RGB.NET.Core.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Update="Services\WindowService\ExceptionDialogView.axaml.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
</Project>
|