-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithub-Trend.csproj
More file actions
64 lines (57 loc) · 2.83 KB
/
Copy pathGithub-Trend.csproj
File metadata and controls
64 lines (57 loc) · 2.83 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
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<!-- Add common runtime identifiers so solution/project restore can produce assets for those RIDs -->
<RuntimeIdentifiers>win-x64;win-arm64;osx-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="12.0.3"/>
<PackageReference Include="Avalonia.Desktop" Version="12.0.3"/>
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.0.3"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="12.0.3"/>
<PackageReference Include="Svg.Controls.Avalonia" Version="12.0.0.11"/>
<PackageReference Include="Serilog" Version="4.0.1"/>
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1"/>
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0"/>
<PackageReference Include="AvaloniaUI.DiagnosticsSupport" Version="2.2.1">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="Svg.Controls.Skia.Avalonia" Version="12.0.0.11"/>
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0"/>
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
</ItemGroup>
<ItemGroup>
<Folder Include="Screenshots\"/>
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\Icons\**"/>
<AvaloniaResource Include="Assets\icon.ico"/>
<Content Include="Assets\Icons\**\*.svg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Data\**\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<!-- Compile .resx files to embedded resources -->
<ItemGroup>
<EmbeddedResource Include="Localization\Resources.resx"/>
<EmbeddedResource Include="Localization\Resources.fr.resx"/>
<EmbeddedResource Include="Database\schema.sql"/>
</ItemGroup>
<!-- GraphQL query files -->
<ItemGroup>
<Content Include="Services\GraphQL\*.graphql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>