Files
PluginTemplate/content/PluginTemplate/Hosts/PluginTemplate.Api.Host/PluginTemplate.Api.Host.csproj
ChiaraBm ed2b4aa5f4
Some checks failed
Nuget: publish / publish (push) Has been cancelled
First iteration of the plugin template
2026-02-20 22:54:01 +01:00

30 lines
1.0 KiB
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.1"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SimplePlugin" Version="1.0.2" />
<PackageReference Include="SimplePlugin.Abstractions" Version="1.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PluginTemplate.Api\PluginTemplate.Api.csproj" />
<ProjectReference Include="..\PluginTemplate.Frontend.Host\PluginTemplate.Frontend.Host.csproj" />
</ItemGroup>
<Import Project="Api.props"/>
</Project>