/
KDP
/
SuprTimeLogAutomation
Обзор
Документация
Войти
/
KDP
/
SuprTimeLogAutomation
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SuprTimeLogAutomation.csproj
31 строка
1 KB
Krylov Dmitry
Обновления пакетов.
08 авг 2026, 09:46
08 авг 2026, 09:46
9f9e438
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>disable</Nullable> <!-- 🔥 Настройки для single-file публикации --> <PublishSingleFile>true</PublishSingleFile> <SelfContained>true</SelfContained> <RuntimeIdentifier>win-x64</RuntimeIdentifier> <PublishTrimmed>false</PublishTrimmed> <IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract> </PropertyGroup> <ItemGroup> <PackageReference Include="Selenium.Support" Version="4.46.0" /> <PackageReference Include="Selenium.WebDriver" Version="4.46.0" /> <PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="152.0.7977.3000-beta" /> </ItemGroup> <ItemGroup> <None Update="config.json"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> </None> </ItemGroup> </Project>