mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 03:27:04 +09:00

Avoids net45 prebuilds in Traversal projects: https://github.com/microsoft/MSBuildSdks/pull/430
10 lines
444 B
XML
10 lines
444 B
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<!-- NoTargets SDK shouldn't copy files into the intermediate/output directory. -->
|
|
<SkipCopyFilesMarkedCopyLocal>true</SkipCopyFilesMarkedCopyLocal>
|
|
<!-- NoTargets SDK needs a TFM set. Set a default if the project doesn't multi target. -->
|
|
<TargetFramework Condition="'$(TargetFramework)' == '' and '$(TargetFrameworks)' == ''">$(NetCoreAppCurrent)</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|