26 lines
787 B
XML
26 lines
787 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<RootNamespace>StellaOps.Testing.FixtureHarvester.Tests</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>preview</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<!-- Prevent including source from main project to avoid duplicate types (CS0436) -->
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Only include test files, not Models or Commands from main project -->
|
|
<Compile Include="*Tests.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="FixtureHarvester.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|