-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoftwareProject.csproj
More file actions
31 lines (31 loc) · 1.6 KB
/
SoftwareProject.csproj
File metadata and controls
31 lines (31 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
<Folder Include="TestData\TSLA" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.11" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.11" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.11" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.11" />
<PackageReference Include="LiveChartsCore.SkiaSharpView.Avalonia" Version="2.0.0-beta.90" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.1" />
<PackageReference Include="Projektanker.Icons.Avalonia" Version="3.7.1" />
<PackageReference Include="Projektanker.Icons.Avalonia.MaterialDesign" Version="3.7.1" />
<PackageReference Include="ReactiveUI.Fody" Version="17.1.17" />
<PackageReference Include="ReactiveUI.Validation" Version="2.2.1" />
<PackageReference Include="SkiaSharp" Version="2.88.0-preview.179" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="2.88.0-preview.179" />
</ItemGroup>
<ItemGroup>
<UpToDateCheckInput Remove="Components\Card.axaml" />
</ItemGroup>
</Project>