|
|
|
@ -1,55 +1,10 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>net35;netstandard1.1</TargetFrameworks> |
|
|
|
<TargetFrameworks>net40;netstandard1.1</TargetFrameworks> |
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
|
|
|
<AssemblyName>MathNet.Numerics.TestData</AssemblyName> |
|
|
|
<RootNamespace>MathNet.Numerics.TestData</RootNamespace> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
|
|
<OutputPath>..\..\out\test\Net35\</OutputPath> |
|
|
|
<IntermediateOutputPath>..\..\obj\test\Net35\</IntermediateOutputPath> |
|
|
|
<BaseIntermediateOutputPath>..\..\obj\test\Net35\</BaseIntermediateOutputPath> |
|
|
|
<DebugType>pdbonly</DebugType> |
|
|
|
<Optimize>true</Optimize> |
|
|
|
<DefineConstants>TRACE</DefineConstants> |
|
|
|
<ErrorReport>prompt</ErrorReport> |
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> |
|
|
|
<NoWarn>1591</NoWarn> |
|
|
|
<Prefer32Bit>false</Prefer32Bit> |
|
|
|
<LangVersion>6</LangVersion> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
|
|
<OutputPath>..\..\out\test-debug\Net35\</OutputPath> |
|
|
|
<IntermediateOutputPath>..\..\obj\test-debug\Net35\</IntermediateOutputPath> |
|
|
|
<BaseIntermediateOutputPath>..\..\obj\test-debug\Net35\</BaseIntermediateOutputPath> |
|
|
|
<DebugSymbols>true</DebugSymbols> |
|
|
|
<DebugType>full</DebugType> |
|
|
|
<Optimize>false</Optimize> |
|
|
|
<ErrorReport>prompt</ErrorReport> |
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget> |
|
|
|
<NoWarn>1591</NoWarn> |
|
|
|
<Prefer32Bit>false</Prefer32Bit> |
|
|
|
<LangVersion>6</LangVersion> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-Signed|AnyCPU'"> |
|
|
|
<OutputPath>..\..\out\test-signed\Net35\</OutputPath> |
|
|
|
<IntermediateOutputPath>..\..\obj\test-signed\Net35\</IntermediateOutputPath> |
|
|
|
<BaseIntermediateOutputPath>..\..\obj\test-signed\Net35\</BaseIntermediateOutputPath> |
|
|
|
<!-- Conditional Strong Name: YES --> |
|
|
|
<SignAssembly>true</SignAssembly> |
|
|
|
<DebugType>pdbonly</DebugType> |
|
|
|
<Optimize>true</Optimize> |
|
|
|
<DefineConstants>TRACE;STRONGNAME</DefineConstants> |
|
|
|
<ErrorReport>prompt</ErrorReport> |
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> |
|
|
|
<NoWarn>1591</NoWarn> |
|
|
|
<Prefer32Bit>false</Prefer32Bit> |
|
|
|
<LangVersion>6</LangVersion> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.1'"> |
|
|
|
<DefineConstants>NETSTANDARD</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|