-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClaudeUsageMonitor.csproj
More file actions
50 lines (45 loc) · 2.37 KB
/
ClaudeUsageMonitor.csproj
File metadata and controls
50 lines (45 loc) · 2.37 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>Assets/icon.ico</ApplicationIcon>
<LangVersion>preview</LangVersion>
<Version>1.0.5</Version>
<ProductVersion>$(Version)</ProductVersion>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>$(Version).%2a</ApplicationVersion>
<Company>JakeSays</Company>
<Product>Claude Usage Monitor</Product>
<Copyright>Copyright (c) 2026 JakeSays</Copyright>
<PublishAot>true</PublishAot>
<IsAotCompatible>true</IsAotCompatible>
<TrimMode>full</TrimMode>
<InvariantGlobalization>true</InvariantGlobalization>
<StripSymbols>true</StripSymbols>
<OptimizationPreference>Speed</OptimizationPreference>
<DebugType Condition="'$(Configuration)' != 'Debug'">None</DebugType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets/icon.ico" />
<AvaloniaResource Include="Assets/icon-256.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="12.0.1" />
<PackageReference Include="Avalonia.Desktop" Version="12.0.1" />
<PackageReference Include="Avalonia.Labs.Notifications" Version="12.0.0" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.0.1" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="12.0.1" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.14">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.7" />
<PackageReference Include="Sesame.ScottPlot.Avalonia" Version="5.1.58" />
</ItemGroup>
</Project>