瀏覽代碼

Merge pull request #451 from cdmihai/debugType

Specify DebugType in directory.build.props
Oren Novotny 8 年之前
父節點
當前提交
0a03db0bee

+ 1 - 0
Ix.NET/Source/Directory.build.props

@@ -15,6 +15,7 @@
     <NoWarn>$(NoWarn);1701;1702;CS1591</NoWarn>
     <DefaultLanguage>en-US</DefaultLanguage>
     <IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
+    <DebugType>embedded</DebugType>
   </PropertyGroup>
   
   <ItemGroup Condition="'$(IsTestProject)' != 'true' and '$(SourceLinkEnabled)' != 'false'">

+ 0 - 1
Ix.NET/Source/System.Interactive.Async.Providers/System.Interactive.Async.Providers.csproj

@@ -5,7 +5,6 @@
     <AssemblyTitle>Interactive Extensions - Async Providers Library</AssemblyTitle>
     <TargetFrameworks>net45;netstandard1.0</TargetFrameworks>
     <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
-    <DebugType>embedded</DebugType>
   </PropertyGroup>
 
   <ItemGroup>

+ 0 - 1
Ix.NET/Source/System.Interactive.Async/System.Interactive.Async.csproj

@@ -5,7 +5,6 @@
     <AssemblyTitle>Interactive Extensions - Async Library</AssemblyTitle>
     <TargetFrameworks>net45;net46;netstandard1.0;netstandard1.3</TargetFrameworks>
     <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
-    <DebugType>embedded</DebugType>
   </PropertyGroup>
 
   <ItemGroup>

+ 0 - 1
Ix.NET/Source/System.Interactive.Providers/System.Interactive.Providers.csproj

@@ -5,7 +5,6 @@
     <AssemblyTitle>Interactive Extensions - Providers Library</AssemblyTitle>
     <TargetFrameworks>net45;netstandard1.0</TargetFrameworks>
     <PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
-    <DebugType>embedded</DebugType>
   </PropertyGroup>
 
   <ItemGroup>

+ 0 - 1
Ix.NET/Source/System.Interactive/System.Interactive.csproj

@@ -6,7 +6,6 @@
     <Authors>Microsoft</Authors>
     <TargetFrameworks>net45;netstandard1.0</TargetFrameworks>
     <PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
-    <DebugType>embedded</DebugType>
   </PropertyGroup>
 
   <ItemGroup>

+ 0 - 5
Rx.NET/Source/Directory.build.targets

@@ -1,9 +1,4 @@
 <Project>
-  <!-- This has to be set in targets as the default props will overwrite -->
-  <PropertyGroup>
-    <DebugType>embedded</DebugType>
-  </PropertyGroup>
-  
   <!-- This props all need to be set in targets as they depend on the values set earlier -->
   <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
     <DefineConstants>$(DefineConstants);NO_CODE_COVERAGE_ATTRIBUTE;HAS_WINRT;PREFER_ASYNC;HAS_TPL46;NO_REMOTING;NO_SERIALIZABLE;CRIPPLED_REFLECTION</DefineConstants>