mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-06 07:12:01 +01:00
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autoupdater.NET.Official" Version="1.7.6" />
|
|
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.1" />
|
|
<PackageReference Include="Sentry" Version="3.24.0" />
|
|
<PackageReference Include="TaskScheduler" Version="2.10.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="RTSSSharedMemoryNET">
|
|
<HintPath>..\ExternalHelpers\RTSSSharedMemoryNET.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="LICENSE.md">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|