-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
45 lines (41 loc) · 3.13 KB
/
Copy pathDirectory.Build.props
File metadata and controls
45 lines (41 loc) · 3.13 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<StablePackageVersion>0.1.2</StablePackageVersion>
<LocalPackageVersionPrefix>0.1.2</LocalPackageVersionPrefix>
<LocalPackageBuildNumber Condition="'$(LocalPackageBuildNumber)' == ''">0</LocalPackageBuildNumber>
<UseLocalPackageVersion Condition="'$(UseLocalPackageVersion)' == ''">false</UseLocalPackageVersion>
<PackageVersion Condition="'$(UseLocalPackageVersion)' == 'true'">$(LocalPackageVersionPrefix)-dev$(LocalPackageBuildNumber)</PackageVersion>
<PackageVersion Condition="'$(UseLocalPackageVersion)' != 'true'">$(StablePackageVersion)</PackageVersion>
<Version>$(PackageVersion)</Version>
<AssemblyVersion>$(StablePackageVersion)</AssemblyVersion>
<FileVersion>$(StablePackageVersion)</FileVersion>
<InformationalVersion>$(PackageVersion)</InformationalVersion>
<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.Control</RepositoryUrl>
<Copyright>Copyright © 2026 Takuya Sogawa of AIKernel-NET</Copyright>
<PackageTags>aikernel;control-plane;governance;semantic-runtime;execution-engine;bonsai;emulator;cpu;gpu;diagnostics;replay;pythonnet</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>aikernel-logo128x128.png</PackageIcon>
<Description>AIKernel.Control package family v0.1.2. Provides the physical execution and governance layer for AIKernel semantic execution graphs, including Control Core, CPU, Emulator, GPU boundary, Diagnostics, and synchronized Python wrapper support.</Description>
<PackageReleaseNotes>
AIKernel.Control package family v0.1.2 - Release build aligned with official AIKernel.NET contract packages v0.1.2, AIKernel.Core v0.1.2, synchronized Python wrapper package aikernel-governance v0.1.2, and local development package outputs using 0.1.2-dev{build-number}.
</PackageReleaseNotes>
<AIKernelContractPackageVersion Condition="'$(AIKernelContractPackageVersion)' == ''">[$(StablePackageVersion)]</AIKernelContractPackageVersion>
<AIKernelCorePackageVersion Condition="'$(AIKernelCorePackageVersion)' == ''">[0.1.2]</AIKernelCorePackageVersion>
<AIKernelPackageVersion Condition="'$(AIKernelPackageVersion)' == ''">$(AIKernelContractPackageVersion)</AIKernelPackageVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)README-ja.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)RELEASE_NOTES.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)assets\aikernel-logo128x128.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>