-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNKS.WebDevConsole.Core.csproj
More file actions
32 lines (28 loc) · 1.55 KB
/
NKS.WebDevConsole.Core.csproj
File metadata and controls
32 lines (28 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Core needs to pack alongside the SDK because plugin csprojs
resolve its Interfaces + Models transitively through the SDK
PackageReference. PackageVersion is injected by publish-sdk.yml
from the v* tag so the csproj only tracks identity. -->
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>NKS.WebDevConsole.Core</PackageId>
<Authors>NKS Hub</Authors>
<Company>NKS Hub</Company>
<Description>Core interfaces + models for NKS WebDev Console plugins: IWdcPlugin, IServiceModule, IPluginContext, PluginUiDefinition, NavContribution, and related types.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/nks-hub/webdev-console-plugins</PackageProjectUrl>
<RepositoryUrl>https://github.com/nks-hub/webdev-console</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>nks;webdev-console;plugin;core</PackageTags>
<IncludeBuildOutput>true</IncludeBuildOutput>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.6" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="9.0.15" />
</ItemGroup>
</Project>