openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.6.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

codegen/generator/src/OpenAI.Library.Plugin.csproj

24lines · modeblame

1855542agithub-actions[bot]11 months ago1<Project Sdk="Microsoft.NET.Sdk">
dff9bb58Jose Arriaga Maldonado1 years ago2
3<PropertyGroup>
0e94b9dfJorge Rangel11 months ago4<TargetFramework>net9.0</TargetFramework>
dff9bb58Jose Arriaga Maldonado1 years ago5<Nullable>enable</Nullable>
6<RootNamespace>OpenAI.Microsoft.Generator.CSharp.ClientModel.Plugin</RootNamespace>
7<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
8</PropertyGroup>
9
10<ItemGroup>
6ea7df23github-actions[bot]9 months ago11<PackageReference Include="Microsoft.TypeSpec.Generator.ClientModel" Version="1.0.0-alpha.20251022.4" />
dff9bb58Jose Arriaga Maldonado1 years ago12</ItemGroup>
13
14<!-- Copy output to package dist path for local execution and -->
15<Target Name="CopyForNpmPackage" AfterTargets="Build">
16<Message Text="Copying output to dist path" Importance="high" />
17<ItemGroup>
18<SourceDir Include="$(OutputPath)**\*.*" />
19</ItemGroup>
20<Copy SourceFiles="@(SourceDir)" DestinationFolder="$(MSBuildThisFileDirectory)..\..\dist\generator\%(RecursiveDir)" />
21<Copy SourceFiles="..\..\..\node_modules\@typespec\http-client-csharp\dist\generator\Microsoft.TypeSpec.Generator.runtimeconfig.json" DestinationFolder="$(MSBuildThisFileDirectory)..\..\dist\generator" />
22</Target>
23
24</Project>