-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathRestSharp.Benchmarks.csproj
25 lines (24 loc) · 1.08 KB
/
RestSharp.Benchmarks.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<RepoRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'RestSharp.sln'))</RepoRoot>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoFixture"/>
<PackageReference Include="BenchmarkDotNet"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(RepoRoot)\src\RestSharp.Serializers.NewtonsoftJson\RestSharp.Serializers.NewtonsoftJson.csproj"/>
<ProjectReference Include="$(RepoRoot)\test\RestSharp.Tests.Shared\RestSharp.Tests.Shared.csproj"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="BenchmarkDotNet.Artifacts\**"/>
<EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**"/>
<None Remove="BenchmarkDotNet.Artifacts\**"/>
</ItemGroup>
</Project>