-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathDirectory.Build.props
26 lines (20 loc) · 1.04 KB
/
Directory.Build.props
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>
<Import Project="..\build\dependencies.props" />
<PropertyGroup>
<Product>Microsoft ASP.NET Core</Product>
<RepositoryUrl>https://github.com/aspnet/Benchmarks</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<!-- this repo does not produce NuGet packages -->
<IsPackable>false</IsPackable>
<!-- Repo contains only test code -->
<EnableApiCheck>false</EnableApiCheck>
<!-- Create database build configurations -->
<Configurations>Debug;Release;Debug_Database;Release_Database</Configurations>
<IsDatabase Condition="$(Configuration.EndsWith('_Database'))">true</IsDatabase>
<!-- enable interceptors language feature for Dapper globally (this by itself doesn't add AOT) -->
<InterceptorsNamespaces>$(InterceptorsNamespaces);Dapper.AOT</InterceptorsNamespaces>
<!-- for parity on down-level SDKs -->
<InterceptorsPreviewNamespaces>$(InterceptorsNamespaces)</InterceptorsPreviewNamespaces>
</PropertyGroup>
</Project>