2
0

Directory.Build.props 566 B

12345678910111213
  1. <Project>
  2. <PropertyGroup>
  3. <!-- Workaround while there is no SDK available that understands the TFM; suppress unsupported version errors. -->
  4. <NETCoreAppMaximumVersion>99.9</NETCoreAppMaximumVersion>
  5. <PublishTrimmed>true</PublishTrimmed>
  6. <TrimMode>full</TrimMode>
  7. <SelfContained>true</SelfContained>
  8. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  9. <!-- Enable NuGet static graph evaluation to optimize incremental restore -->
  10. <RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
  11. </PropertyGroup>
  12. </Project>