forked from dotnet/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
31 lines (25 loc) · 1.01 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
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<PropertyGroup Condition="'$(CopyrightNetFoundation)' != ''">
<Copyright>$(CopyrightNetFoundation)</Copyright>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<StrongNameKeyId>Microsoft</StrongNameKeyId>
</PropertyGroup>
<Import Project="eng\dependencies.props" />
<PropertyGroup>
<Product>Microsoft Crank</Product>
<RepositoryUrl>https://github.com/dotnet/crank</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<!-- This repository does not produce NuGet packages -->
<IsPackable>false</IsPackable>
<!-- Repo contains only test code -->
<EnableApiCheck>false</EnableApiCheck>
<!-- Lots of our dependencies are not strong-named -->
<NoWarn>$(NoWarn);8002</NoWarn>
<LangVersion>latest</LangVersion>
</PropertyGroup>
</Project>