|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> |
2 | | - <TargetFramework>net9.0</TargetFramework> |
3 | | - <Nullable>enable</Nullable> |
4 | | - <ImplicitUsings>enable</ImplicitUsings> |
5 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
6 | | - <!-- Package Metadata --> |
7 | | - <PackageId>NLWebNet</PackageId> |
8 | | - <PackageVersion Condition="'$(PackageVersion)' == ''">1.0.0-dev</PackageVersion> |
9 | | - <Authors>NLWebNet Contributors</Authors> |
10 | | - <Description>A .NET library implementing the NLWeb protocol for natural language web interfaces</Description> |
11 | | - <PackageProjectUrl>https://github.com/microsoft/NLWeb</PackageProjectUrl> |
12 | | - <RepositoryUrl>https://github.com/your-org/NLWebNet</RepositoryUrl> |
13 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
14 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
15 | | - |
16 | | - <!-- Symbol and Deterministic Build Configuration --> |
17 | | - <IncludeSymbols>true</IncludeSymbols> |
18 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
19 | | - <DebugType>portable</DebugType> |
20 | | - <DebugSymbols>true</DebugSymbols> |
21 | | - <Deterministic>true</Deterministic> |
22 | | - <ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild> |
23 | | - |
24 | | - <!-- Source Link Configuration --> |
25 | | - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
26 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
27 | | - </PropertyGroup> <ItemGroup> |
28 | | - <PackageReference Include="Microsoft.Extensions.AI" Version="9.5.0" /> |
29 | | - <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" /> |
30 | | - <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" /> |
31 | | - <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" /> |
32 | | - <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.5" /> |
33 | | - <PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" /> |
34 | | - <PackageReference Include="ModelContextProtocol" Version="0.2.0-preview.3" /> |
35 | | - |
36 | | - <!-- Source Link for GitHub --> |
37 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
38 | | - </ItemGroup> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net9.0</TargetFramework> |
| 4 | + <Nullable>enable</Nullable> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 7 | + <!-- Package Metadata --> |
| 8 | + <PackageId>NLWebNet</PackageId> |
| 9 | + <PackageVersion Condition="'$(PackageVersion)' == ''">1.0.0-dev</PackageVersion> |
| 10 | + <Authors>NLWebNet Contributors</Authors> |
| 11 | + <Description>A .NET library implementing the NLWeb protocol for natural language web interfaces</Description> |
| 12 | + <PackageProjectUrl>https://github.com/microsoft/NLWeb</PackageProjectUrl> |
| 13 | + <RepositoryUrl>https://github.com/your-org/NLWebNet</RepositoryUrl> |
| 14 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 15 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
39 | 16 |
|
40 | | - <ItemGroup> |
41 | | - <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
42 | | - </ItemGroup> |
| 17 | + <!-- Symbol and Deterministic Build Configuration --> |
| 18 | + <IncludeSymbols>true</IncludeSymbols> |
| 19 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 20 | + <DebugType>portable</DebugType> |
| 21 | + <DebugSymbols>true</DebugSymbols> |
| 22 | + <Deterministic>true</Deterministic> |
| 23 | + <ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild> |
| 24 | + |
| 25 | + <!-- Source Link Configuration --> |
| 26 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 27 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 28 | + </PropertyGroup> |
| 29 | + <ItemGroup> |
| 30 | + <PackageReference Include="Microsoft.Extensions.AI" Version="9.6.0" /> |
| 31 | + <PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" /> |
| 32 | + <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" /> |
| 33 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.6" /> |
| 34 | + <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.6" /> |
| 35 | + <PackageReference Include="Microsoft.Extensions.Options" Version="9.0.6" /> |
| 36 | + <PackageReference Include="ModelContextProtocol" Version="0.2.0-preview.3" /> |
| 37 | + |
| 38 | + <!-- Source Link for GitHub --> |
| 39 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 44 | + </ItemGroup> |
43 | 45 |
|
44 | 46 | </Project> |
0 commit comments