2022-11-13 14:39:29 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2022-12-15 21:38:49 +01:00
|
|
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
2022-11-13 14:39:29 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-12-12 15:08:00 +01:00
|
|
|
|
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
|
|
|
|
|
|
<Exec
|
|
|
|
|
|
Command="git describe --long --always --dirty --exclude=* --abbrev=8"
|
|
|
|
|
|
ConsoleToMSBuild="True"
|
|
|
|
|
|
IgnoreExitCode="True"
|
|
|
|
|
|
>
|
|
|
|
|
|
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput"/>
|
|
|
|
|
|
</Exec>
|
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
2022-11-13 14:39:29 +01:00
|
|
|
|
<ItemGroup>
|
2022-12-11 02:35:46 +01:00
|
|
|
|
<PackageReference Include="Autoupdater.NET.Official" Version="1.7.6" />
|
2022-11-15 17:00:13 +01:00
|
|
|
|
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.1" />
|
2022-12-12 15:08:00 +01:00
|
|
|
|
<PackageReference Include="Sentry" Version="3.24.0" />
|
2022-11-13 14:39:29 +01:00
|
|
|
|
<PackageReference Include="TaskScheduler" Version="2.10.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-11-15 21:09:14 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Reference Include="RTSSSharedMemoryNET">
|
2022-11-20 15:12:12 +01:00
|
|
|
|
<HintPath>..\ExternalHelpers\RTSSSharedMemoryNET.dll</HintPath>
|
2022-11-15 21:09:14 +01:00
|
|
|
|
</Reference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-11-13 14:39:29 +01:00
|
|
|
|
</Project>
|