2024-09-30 16:32:48 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-07-11 09:34:15 -07:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-07-25 09:15:55 -07:00
|
|
|
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
|
2024-07-11 09:34:15 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2024-09-30 16:32:48 -07:00
|
|
|
<NoWarn>$(NoWarn);CA1829;CA1826</NoWarn>
|
2024-07-11 09:34:15 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-09-30 16:32:48 -07:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.TestHost" />
|
2024-07-11 09:34:15 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.Mistral\AutoGen.Mistral.csproj" />
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.WebAPI\AutoGen.WebAPI.csproj" />
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen.SourceGenerator\AutoGen.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
|
|
<ProjectReference Include="..\..\src\AutoGen\AutoGen.csproj" />
|
|
|
|
<ProjectReference Include="..\AutoGen.Tests\AutoGen.Tests.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Using Include="Xunit" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|