Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 0 additions & 147 deletions .azure/pipelines/components-ai-daily.yml

This file was deleted.

1 change: 1 addition & 0 deletions eng/ShippingAssemblies.props
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.SignalR.Specification.Tests" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.Components.AI" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.Components.CustomElements" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.Components.Media" />
<AspNetCoreShippingAssembly Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" />
Expand Down
14 changes: 3 additions & 11 deletions src/Components/AI/src/Microsoft.AspNetCore.Components.AI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,17 @@
<PropertyGroup>
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
<VersionPrefix>0.1.0</VersionPrefix>
<!-- Shipping package assemblies use the ASP.NET Core major and minor assembly version. -->
<AssemblyVersion>$(AspNetCoreMajorMinorVersion).0.0</AssemblyVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!--
Components.AI builds out of band and is not part of the .NET platform release. IsShippingPackage=false keeps
the package out of the shipping asset set that the release publishes to nuget.org, while the official build
still packs, signs, and publishes it to the transport feed.
-->
<IsShippingPackage>false</IsShippingPackage>
<IsShippingPackage>true</IsShippingPackage>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Blazor component library for building AI conversational UIs on top of Microsoft.Extensions.AI.</Description>
<PackageTags>blazor;ai;chat;components</PackageTags>
<!-- RS0026: New package with no prior shipped API; optional parameter backcompat is N/A -->
<NoWarn>$(NoWarn);RS0026</NoWarn>
<!--
Components.AI versions independently from the shared framework. Keep producing dated 0.1.0-preview.1 packages
when the repo moves to RC or RTM. These properties are listed in TreatAsLocalProperty above so they override
repository-wide version properties.
-->
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
Expand Down
Loading