openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
codegen/generator/src/OpenAI.Library.Plugin.csproj
24lines · modeblame
1855542agithub-actions[bot]11 months ago | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
dff9bb58Jose Arriaga Maldonado1 years ago | 2 | |
| 3 | <PropertyGroup> | |
0e94b9dfJorge Rangel11 months ago | 4 | <TargetFramework>net9.0</TargetFramework> |
dff9bb58Jose Arriaga Maldonado1 years ago | 5 | <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 ago | 11 | <PackageReference Include="Microsoft.TypeSpec.Generator.ClientModel" Version="1.0.0-alpha.20251022.4" /> |
dff9bb58Jose Arriaga Maldonado1 years ago | 12 | </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> |