Files
test-web/test-aspnetcore/tests/TestAspNetCore.Tests.csproj
Chris Dill 018d8e184e
All checks were successful
Build / build (push) Successful in 57s
Initial commit
2025-11-08 20:25:47 +00:00

28 lines
752 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.9" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit.v3" Version="2.0.3" />
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\TestAspNetCore.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\src\**\*.Test.cs" />
</ItemGroup>
</Project>