Closed jhudsoncedaron closed 5 years ago
We have:
<PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> </ProperyGroup> <ItemGroup> <ProjectReference Include="..\CreateAssemblyInfo\CreateAssemblyInfo.csproj" Properties="RuntimeIdentifier="> <ReferenceOutputAssembly>false</ReferenceOutputAssembly> </ProjectReference> </ItemGroup>
The netcoreapp3.0 assembly is a tooling dependency. This reference is actually fine and everything would work if the check were knocked out.
My that was inane. Need <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties> which appears to be undocumented.
<SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
We have:
The netcoreapp3.0 assembly is a tooling dependency. This reference is actually fine and everything would work if the check were knocked out.