Add another CS1705 workaround in test project depending on some .NET Standard projects
This commit is contained in:
parent
3a67489398
commit
a11d4b32ad
|
|
@ -2,10 +2,14 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
||||||
|
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
||||||
|
<CompileUsingReferenceAssemblies>false</CompileUsingReferenceAssemblies>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="Microsoft.AspNetCore.Blazor.DataAnnotations.Validation" />
|
<Reference Include="Microsoft.AspNetCore.Blazor.DataAnnotations.Validation" />
|
||||||
|
<!-- Avoid CS1705 errors due to mix of assemblies brought in transitively. -->
|
||||||
|
<Reference Include="Microsoft.AspNetCore.Components" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue