DeviceApiTester.csproj 815 字节
Newer Older
1 2 3 4
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
R
Rich Lander 已提交
5 6
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <LangVersion>9</LangVersion>
7 8 9
    <Configurations>Debug;Release</Configurations>
    <Copyright>The .NET Foundation</Copyright>
    <Company>The .NET Foundation</Company>
10 11
  </PropertyGroup>

12 13 14 15 16
  <PropertyGroup>
    <!-- Ignore missing documentation tags (mostly already documented parameter members, anyway)-->
    <NoWarn>$(NoWarn);CS1591</NoWarn>
  </PropertyGroup>

17
  <ItemGroup>
R
Rich Lander 已提交
18
    <PackageReference Include="CommandLineParser" Version="2.8.0" />
19
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.9.0" />
20
    <ProjectReference Include="$(MainLibraryPath)System.Device.Gpio.csproj" />
21 22 23
  </ItemGroup>

</Project>