forked from microsoft/node-api-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NodeApi.Bench.csproj
26 lines (21 loc) · 988 Bytes
/
NodeApi.Bench.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition=" '$(TargetFrameworks)' == '' and ! $([MSBuild]::IsOsPlatform('Windows')) ">net7.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(TargetFrameworks)' == '' and $([MSBuild]::IsOsPlatform('Windows')) ">net7.0;net472</TargetFrameworks>
<OutputType>exe</OutputType>
<RootNamespace>Microsoft.JavaScript.NodeApi.Bench</RootNamespace>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<NoWarn>MSB3270</NoWarn><!-- Processor architecture mismatch bewteen "MSIL" and ... -->
</PropertyGroup>
<ItemGroup>
<Compile Include="../test/TestUtils.cs" Link="TestUtils.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\NodeApi\NodeApi.csproj" />
<ProjectReference Include="..\src\NodeApi.DotNetHost\NodeApi.DotNetHost.csproj" />
</ItemGroup>
</Project>