Suppose I have the following project file:
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<TargetFramework>net47</TargetFramework>
</PropertyGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
</Project>
Can I transfer the TargetFramework property to an external attribute file? When I try to do this, Visual Studio gives me a "one-way update" error.
source
share