Browse Source

Build: do not vary test assembly name by configuration

pull/163/head
Christoph Ruegg 13 years ago
parent
commit
a36d20bece
  1. 3
      src/FSharpUnitTests/FSharpUnitTestsPortable.fsproj
  2. 3
      src/UnitTests/UnitTestsPortable.csproj

3
src/FSharpUnitTests/FSharpUnitTestsPortable.fsproj

@ -15,7 +15,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug47|AnyCPU' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<AssemblyName>MathNet.Numerics.FSharp.UnitTests47</AssemblyName>
<OutputPath>..\..\out\test\debug\Portable47\</OutputPath>
<Optimize>false</Optimize>
<Tailcalls>false</Tailcalls>
@ -26,7 +25,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release47|AnyCPU' ">
<DefineConstants>TRACE</DefineConstants>
<AssemblyName>MathNet.Numerics.FSharp.UnitTests47</AssemblyName>
<OutputPath>..\..\out\test\Portable47\</OutputPath>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
@ -36,7 +34,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release136|AnyCPU' ">
<DefineConstants>TRACE;NOSYSNUMERICS</DefineConstants>
<AssemblyName>MathNet.Numerics.FSharp.UnitTests136</AssemblyName>
<OutputPath>..\..\out\test\Portable136\</OutputPath>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>

3
src/UnitTests/UnitTestsPortable.csproj

@ -16,7 +16,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug47|AnyCPU' ">
<DefineConstants>TRACE;DEBUG;PORTABLE</DefineConstants>
<AssemblyName>MathNet.Numerics.UnitTests47</AssemblyName>
<OutputPath>..\..\out\test\debug\Portable47\</OutputPath>
<Optimize>false</Optimize>
<DebugType>full</DebugType>
@ -27,7 +26,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release47|AnyCPU' ">
<DefineConstants>TRACE;PORTABLE</DefineConstants>
<AssemblyName>MathNet.Numerics.UnitTests47</AssemblyName>
<OutputPath>..\..\out\test\Portable47\</OutputPath>
<DocumentationFile>..\..\out\test\Portable47\MathNet.Numerics.XML</DocumentationFile>
<Optimize>true</Optimize>
@ -38,7 +36,6 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release136|AnyCPU' ">
<DefineConstants>TRACE;PORTABLE;NOSYSNUMERICS</DefineConstants>
<AssemblyName>MathNet.Numerics.UnitTests136</AssemblyName>
<OutputPath>..\..\out\test\Portable136\</OutputPath>
<DocumentationFile>..\..\out\test\Portable136\MathNet.Numerics.XML</DocumentationFile>
<Optimize>true</Optimize>

Loading…
Cancel
Save