forked from dotnet/iot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (25 loc) · 1.11 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- Hint: This file is only included in projects not in the src/devices subtree. Check the file with the same name
there for common includes to all bindings -->
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<Import Project="$(RepositoryEngineeringDir)Compilers.props" />
<Import Project="$(RepositoryEngineeringDir)Analyzers.props" />
<Import Project="$(RepositoryEngineeringDir)Versions.external.props" />
<PropertyGroup>
<Copyright>$(CopyrightNetFoundation)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<MainLibraryPath>$(MSBuildThisFileDirectory)src/System.Device.Gpio/</MainLibraryPath>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Language>C#</Language>
<LangVersion>9</LangVersion>
<!-- Generate snupkg package -->
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<!-- Include license and third party files to packages -->
<Content Include="$(RepoRoot)THIRD-PARTY-NOTICES.TXT" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>