Files
ReleaseUpdater/Updater.Test/Updater.Test.csproj
FrigaT 2cb585c222
All checks were successful
CI / build-test (push) Successful in 30s
Release / pack-and-publish (release) Successful in 30s
Доработан вызов updater.exe
2025-11-27 10:55:38 +03:00

21 lines
487 B
XML

<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>