Fix ability to run unit tests from VSCode (#3036)
Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
This commit is contained in:
parent
98a4c99350
commit
c5bfff8759
|
|
@ -17,7 +17,13 @@
|
||||||
</Content>
|
</Content>
|
||||||
<!--Temp workaround to allow using daily dotnet 6 builds-->
|
<!--Temp workaround to allow using daily dotnet 6 builds-->
|
||||||
<!--<PackageReference Include="System.Runtime.CompilerServices.Unsafe" PrivateAssets="All" NoWarn="NU1605" Version="6.0.0-preview.4.21253.7" />-->
|
<!--<PackageReference Include="System.Runtime.CompilerServices.Unsafe" PrivateAssets="All" NoWarn="NU1605" Version="6.0.0-preview.4.21253.7" />-->
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- Running unit tests from VSCode does not work with .NET SDK 6.0.200 without ProduceReferenceAssemblyInOutDir -->
|
||||||
|
<!-- Related breaking change: https://docs.microsoft.com/en-us/dotnet/core/compatibility/sdk/6.0/write-reference-assemblies-to-obj -->
|
||||||
|
<ProduceReferenceAssemblyInOutDir>true</ProduceReferenceAssemblyInOutDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Label="Package versions used by test and example projects">
|
<PropertyGroup Label="Package versions used by test and example projects">
|
||||||
<!--
|
<!--
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue