Browse Source

Update Directory.Build.targets to work around a .NET SDK bug

pull/936/head
Kévin Chalet 6 years ago
parent
commit
3836bc0c08
  1. 14
      Directory.Build.targets

14
Directory.Build.targets

@ -15,6 +15,20 @@
<PublicSign>false</PublicSign> <PublicSign>false</PublicSign>
</PropertyGroup> </PropertyGroup>
<!--
Note: the .NET SDK is impacted by a bug that prevents the resulting builds from being
treated as deterministic. To work around this bug, AssemblyInfo.cs is manually added.
Visit https://github.com/dotnet/sourcelink/issues/572 for more information.
-->
<PropertyGroup>
<TargetFrameworkMonikerAssemblyAttributesPath>$([System.IO.Path]::Combine('$(IntermediateOutputPath)','$(TargetFrameworkMoniker).AssemblyAttributes$(DefaultLanguageSourceExtension)'))</TargetFrameworkMonikerAssemblyAttributesPath>
</PropertyGroup>
<ItemGroup>
<EmbeddedFiles Include="$(GeneratedAssemblyInfoFile)"/>
</ItemGroup>
<!-- <!--
Note: Entity Framework Core 2.x references System.Interactive.Async 3.x, that includes Note: Entity Framework Core 2.x references System.Interactive.Async 3.x, that includes
its own IAsyncEnumerable. To work around collisions between this type and the new type its own IAsyncEnumerable. To work around collisions between this type and the new type

Loading…
Cancel
Save