Directory.Build.props 864 字节
Newer Older
1 2
<?xml version="1.0" encoding="utf-8"?>
<Project>
3
  <Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
4
  <Import Project="$(RepositoryEngineeringDir)Compilers.props" />
5

K
Krzysztof Wicher 已提交
6
  <PropertyGroup>
7 8 9
    <Copyright>$(CopyrightNetFoundation)</Copyright>
    <PackageLicenseExpression>MIT</PackageLicenseExpression>
  </PropertyGroup>
K
Krzysztof Wicher 已提交
10

11
  <PropertyGroup>
12
    <PublishWindowsPdb>false</PublishWindowsPdb>
13
    <Language>C#</Language>
14 15
    <TargetsWindows Condition="$(RuntimeIdentifier.StartsWith('win'))">true</TargetsWindows>
    <TargetsLinux Condition="$(RuntimeIdentifier.StartsWith('linux'))">true</TargetsLinux>
16
    <LangVersion>Latest</LangVersion>
17
  </PropertyGroup>
18 19 20 21 22

  <ItemGroup>
    <!-- Include license and third party files to packages -->
    <Content Include="$(RepoRoot)THIRD-PARTY-NOTICES.TXT" Pack="true" PackagePath="\" />
  </ItemGroup>
23
</Project>