Directory.Build.props 761 字节
Newer Older
1 2 3
<Project>

  <PropertyGroup>
4 5
    <TargetFramework>net472</TargetFramework>
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
6
    <UseVsMicroBuildAssemblyVersion>true</UseVsMicroBuildAssemblyVersion>
7
    <ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
K
Kevin Ransom (msft) 已提交
8 9
    <SetupProductArch>Neutral</SetupProductArch>
    <BypassVsixValidation>true</BypassVsixValidation>
10 11
  </PropertyGroup>

12 13 14 15 16 17
  <PropertyGroup>
    <!-- NU1504 reports duplicate package download for various packages.
          Disabling this warning until https://github.com/dotnet/sdk/issues/24747 is fixed.-->
    <NoWarn>$(NoWarn);NU1504</NoWarn>
  </PropertyGroup>

B
Brett V. Forsgren 已提交
18 19
  <Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />

20
</Project>