浏览代码

debug type on net46 tests to full

Oren Novotny 8 年之前
父节点
当前提交
ea92ea979a
共有 1 个文件被更改,包括 2 次插入1 次删除
  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>