-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoreTempLinux.csproj
More file actions
26 lines (22 loc) · 883 Bytes
/
Copy pathCoreTempLinux.csproj
File metadata and controls
26 lines (22 loc) · 883 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Este proyecto es exclusivamente para Linux -->
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<!-- Fuente de verdad de la versión; el tag vX.Y.Z de la release debe coincidir. -->
<Version>1.0.0</Version>
</PropertyGroup>
<!-- El proyecto de pruebas vive en tests/ y se compila por separado. -->
<ItemGroup>
<Compile Remove="tests/**/*.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GirCore.Gtk-4.0" Version="0.8.*" />
<!-- Bandeja del sistema vía StatusNotifierItem sobre D-Bus. -->
<PackageReference Include="Tmds.DBus" Version="0.94.*" />
</ItemGroup>
</Project>