Sfoglia il codice sorgente

debug type on net46 tests to full

Oren Novotny 8 anni fa
parent
commit
ea92ea979a
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      Rx.NET/Source/tests/Directory.build.targets

+ 2 - 1
Rx.NET/Source/tests/Directory.build.targets

@@ -1,6 +1,7 @@
 <Project>  
   <Import Project="..\Directory.build.targets" />
   <PropertyGroup>
-    <DebugType>portable</DebugType>
+    <DebugType Condition="'$(TargetFramework)' != 'net46'">portable</DebugType>
+    <DebugType Condition="'$(TargetFramework)' == 'net46'">full</DebugType>
   </PropertyGroup>
 </Project>