-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathPlanViewer.App.csproj
More file actions
55 lines (51 loc) · 2.95 KB
/
PlanViewer.App.csproj
File metadata and controls
55 lines (51 loc) · 2.95 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>EDD.ico</ApplicationIcon>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<Version>1.7.3</Version>
<Authors>Erik Darling</Authors>
<Company>Darling Data LLC</Company>
<Product>Performance Studio</Product>
<Copyright>Copyright (c) 2026 Erik Darling, Darling Data LLC</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.12" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.4.1" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.12" />
<PackageReference Include="ScottPlot.Avalonia" Version="5.1.57" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.4.1" />
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12" />
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.7.17" />
<PackageReference Include="ModelContextProtocol" Version="0.7.0-preview.1" />
<PackageReference Include="ModelContextProtocol.AspNetCore" Version="0.7.0-preview.1" />
<PackageReference Include="TextMateSharp.Grammars" Version="2.0.3" />
<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="170.191.0" />
<PackageReference Include="Velopack" Version="0.0.1298" />
<!-- Pin SkiaSharp native assets to match SkiaSharp 3.119.0.
Avalonia.Skia 11.3.12 transitively pulls in 2.88.9 for Linux and WebAssembly,
but the managed SkiaSharp 3.x requires native libs in the [119.0, 120.0) range.
Without these pins, the old 2.88.x .so overwrites the correct one at publish time,
causing a TypeInitializationException on Linux (GitHub issue #139). -->
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.0" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="EDD.ico" />
<None Update="EDD.icns" CopyToOutputDirectory="PreserveNewest" />
<None Update="Info.plist" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PlanViewer.Core\PlanViewer.Core.csproj" />
</ItemGroup>
</Project>