Files
SfeduSchedule/SfeduSchedule.Plugin.Sample/SfeduSchedule.Plugin.Sample.csproj
T
serega404 98705d6bbd build: Обновил проекты до .NET 10
Перевел все проекты решения и связанные Docker-образы на целевую платформу .NET 10.
2026-01-24 18:34:49 +03:00

20 lines
745 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<AssemblyName>SfeduSchedule.Plugin.Sample.plugin</AssemblyName>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Кладём зависимости плагина рядом со сборкой, чтобы загрузчик их нашёл -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ModeusSchedule.Abstractions\ModeusSchedule.Abstractions.csproj"/>
</ItemGroup>
</Project>