Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 9s
20 lines
744 B
XML
20 lines
744 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>
|
||
<ProjectReference Include="..\ModeusSchedule.Abstractions\ModeusSchedule.Abstractions.csproj"/>
|
||
</ItemGroup>
|
||
|
||
|
||
</Project>
|