-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (27 loc) · 1.8 KB
/
Directory.Build.props
File metadata and controls
30 lines (27 loc) · 1.8 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.1.0.1</Version>
<AssemblyVersion>0.1.0.1</AssemblyVersion>
<FileVersion>0.1.0.1</FileVersion>
<InformationalVersion>0.1.0.1</InformationalVersion>
<AIKernelPackageVersion>0.1.0</AIKernelPackageVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>Takuya Sogawa</Authors>
<Company>AIKernel-NET</Company>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://www.nuget.org/profiles/AIKernel-NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/AIKernel-NET/AIKernel.Core</RepositoryUrl>
<Copyright>Copyright © 2026 Takuya Sogawa of AIKernel-NET</Copyright>
<PackageTags>aikernel;aikernel-core;ai-os;kernel;provider;hosting;rom;vfs;context;execution;immutability;fail-closed;capability-modules;dynamicslm;seedslm;hatl;admissibility;semantic-compilation</PackageTags>
<PackageReleaseNotes>
AIKernel.Core package family v0.1.0.1 - Patch release aligned with official AIKernel.NET contract packages v0.1.0. Core provides Result/Option/Either, ResultStep/ReplayLog semantics, DSL and ROM runtime adapters, Kernel orchestration, Provider integration, Core-owned MemoryRegion/MemoryMapper runtime adapters, and Kernel provider-routing facade helpers. GPU and Native ABI implementations remain external Capability packages.
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<AssemblyMetadata Include="AIKernel.ImmutabilityPrinciple" Value="Collections must use System.Collections.Immutable." />
<AssemblyMetadata Include="AIKernel.FailClosedPrinciple" Value="Exception handling must ensure no partial success." />
</ItemGroup>
</Project>