-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathClearScriptBenchmarks.csproj
52 lines (43 loc) · 2.23 KB
/
ClearScriptBenchmarks.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion Condition="'$(TargetFramework)' == 'netcoreapp3.1'">9.0</LangVersion>
</PropertyGroup>
<!-- ReSharper disable once UnknownProperty -->
<PropertyGroup Condition="'$(VisualStudioVersion)'>='17.0'">
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<RootNamespace>Microsoft.ClearScript.Test</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<!-- ReSharper disable once UnknownProperty -->
<PropertyGroup Condition="'$(VisualStudioVersion)'<'17.0'">
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<RootNamespace>Microsoft.ClearScript.Test</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputPath>..\..\bin\Debug\Unix</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputPath>..\..\bin\Release\Unix</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\ClearScriptBenchmarks\ClearScriptBenchmarks.Unix.cs" Link="ClearScriptBenchmarks.Unix.cs" />
<Compile Include="..\..\ClearScriptBenchmarks\Properties\AssemblyInfo.cs" Link="Properties\AssemblyInfo.cs" />
<Compile Include="..\..\ClearScriptBenchmarks\SunSpider.cs" Link="SunSpider.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\NetCore\ClearScript.Core\ClearScript.Core.csproj" />
<ProjectReference Include="..\..\NetCore\ClearScript.V8\ClearScript.V8.csproj" />
</ItemGroup>
</Project>