-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathFastExpressionCompiler.TestsRunner.csproj
More file actions
19 lines (16 loc) · 1.07 KB
/
FastExpressionCompiler.TestsRunner.csproj
File metadata and controls
19 lines (16 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net9.0;net8.0;net6.0;net10.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' == 'true' OR '$(Configuration)' == 'Debug'">net9.0;net10.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<IsTestProject>false</IsTestProject>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<NoWarn>$(NoWarn);NETSDK1005;NETSDK1138;NU1702</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FastExpressionCompiler.UnitTests\FastExpressionCompiler.UnitTests.csproj" />
<ProjectReference Include="..\FastExpressionCompiler.LightExpression.UnitTests\FastExpressionCompiler.LightExpression.UnitTests.csproj" />
<ProjectReference Include="..\FastExpressionCompiler.IssueTests\FastExpressionCompiler.IssueTests.csproj" />
<ProjectReference Include="..\FastExpressionCompiler.LightExpression.IssueTests\FastExpressionCompiler.LightExpression.IssueTests.csproj" />
</ItemGroup>
</Project>