Доработан вызов updater.exe
All checks were successful
CI / build-test (push) Successful in 30s
Release / pack-and-publish (release) Successful in 30s

This commit is contained in:
2025-11-27 10:55:38 +03:00
parent cc490c7112
commit 2cb585c222
14 changed files with 173 additions and 98 deletions

View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ReleaseUpdater\ReleaseUpdater.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Tools\Updater.exe">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>