openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/diagnose-responses-test-issue

Branches

Tags

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

Clone

HTTPS

Download ZIP

codegen/generator/test/OpenAI.Library.Plugin.Tests.csproj

37lines · modecode

1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFrameworks>$(GeneratorTargetFrameworks)</TargetFrameworks>
5 <IsTestProject>true</IsTestProject>
6 <IsPackable>false</IsPackable>
7 </PropertyGroup>
8
9 <ItemGroup>
10 <ProjectReference Include="..\src\OpenAI.Library.Plugin.csproj" />
11 <ProjectReference Include="common\OpenAI.Library.Plugin.Tests.Common.csproj" />
12 </ItemGroup>
13
14 <ItemGroup>
15 <PackageReference Include="Microsoft.NET.Test.Sdk" />
16 <PackageReference Include="Moq" />
17 <PackageReference Include="NUnit" />
18 <PackageReference Include="NUnit3TestAdapter" />
19 </ItemGroup>
20
21 <ItemGroup>
22 <None Update="TestHelpers\Configuration.json">
23 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
24 </None>
25 </ItemGroup>
26
27 <ItemGroup>
28 <Compile Remove="**\TestData\**\*.cs" />
29 <Compile Remove="common\**" />
30 </ItemGroup>
31
32 <ItemGroup>
33 <None Include="**\TestData\**\*.cs">
34 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35 </None>
36 </ItemGroup>
37</Project>