|
15 | 15 | <Title>OpenAI API</Title>
|
16 | 16 | <PackageReleaseNotes>Updated to work with the current API as of February 3, 2023. Added Files and Embedding endpoints. Removed the Search endpoint as OpenAI has removed that API. Potentially breaking change with v1.4: The various endpoints (Completions, Models, etc) and related classes have each moved into their own namespaces, for example `OpenAI_API.Completions.CompletionRequest` and `OpenAI_API.Models.Model.DavinciText`. You may need to add `using`s or fully qualify names in exisitng code.</PackageReleaseNotes>
|
17 | 17 | <PackageId>OpenAI</PackageId>
|
18 |
| - <Version>1.4.0</Version> |
19 |
| - <AssemblyVersion>1.4.0.0</AssemblyVersion> |
20 |
| - <FileVersion>1.4.0.0</FileVersion> |
| 18 | + <Version>1.4.1</Version> |
| 19 | + <AssemblyVersion>1.4.1.0</AssemblyVersion> |
| 20 | + <FileVersion>1.4.1.0</FileVersion> |
21 | 21 | <GenerateDocumentationFile>True</GenerateDocumentationFile>
|
22 | 22 | <PackageReadmeFile>README.md</PackageReadmeFile>
|
23 | 23 | <ProduceReferenceAssembly>True</ProduceReferenceAssembly>
|
24 | 24 | <RepositoryType>git</RepositoryType>
|
25 |
| - <IncludeSymbols>True</IncludeSymbols> |
| 25 | + |
| 26 | + <!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> |
| 27 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 28 | + <!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link --> |
| 29 | + <IncludeSymbols>true</IncludeSymbols> |
26 | 30 | <SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
| 31 | + |
27 | 32 | <Deterministic>true</Deterministic>
|
| 33 | + |
28 | 34 | </PropertyGroup>
|
29 | 35 |
|
30 | 36 | <ItemGroup>
|
31 |
| - <None Include="..\README.md"> |
32 |
| - <Pack>True</Pack> |
33 |
| - <PackagePath>\</PackagePath> |
34 |
| - </None> |
| 37 | + <None Include="..\README.md"> |
| 38 | + <Pack>True</Pack> |
| 39 | + <PackagePath>\</PackagePath> |
| 40 | + </None> |
35 | 41 | </ItemGroup>
|
36 | 42 |
|
37 | 43 | <ItemGroup>
|
38 | 44 | <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
|
39 | 45 | <PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
| 46 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
40 | 47 | </ItemGroup>
|
41 | 48 |
|
42 | 49 | </Project>
|
0 commit comments