Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 4m3s
22 lines
914 B
XML
22 lines
914 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
||
<PropertyGroup>
|
||
<AssemblyName>SfeduSchedule.Plugin.Sample.plugin</AssemblyName>
|
||
<TargetFramework>net9.0</TargetFramework>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<!-- Кладём зависимости плагина рядом со сборкой, чтобы загрузчик их нашёл -->
|
||
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||
<Nullable>enable</Nullable>
|
||
<OutputType>Library</OutputType>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<!-- Даёт доступ к Microsoft.AspNetCore.* (ControllerBase и т.п.) -->
|
||
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
|
||
<ProjectReference Include="..\SfeduSchedule.Plugin.Abstractions\SfeduSchedule.Plugin.Abstractions.csproj" />
|
||
</ItemGroup>
|
||
|
||
|
||
</Project>
|