summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2017-02-22 09:31:14 -0800
committerAndy Ayers <andya@microsoft.com>2017-02-22 09:31:14 -0800
commite36c46a2e53dabb008e89b10ed138f0ccf7f192a (patch)
tree92c3077652177c7876a6302287ec1046ea82b10b /tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj
parentf60e421e3cc6c6c7160bc3b679e8a08530ae275a (diff)
downloadcoreclr-e36c46a2e53dabb008e89b10ed138f0ccf7f192a.tar.gz
coreclr-e36c46a2e53dabb008e89b10ed138f0ccf7f192a.tar.bz2
coreclr-e36c46a2e53dabb008e89b10ed138f0ccf7f192a.zip
Fix projects that specified DebugType incorrectly
Make conditional DebugType properties uncondtional. Fix debug type and optimize settings for _d and _do suffixed tests. Remove conditional DebugType propery if there is also an unconditonal property.
Diffstat (limited to 'tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj')
-rw-r--r--tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj13
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj b/tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj
index 0932bfb0ea..3ab2ab97da 100644
--- a/tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj
+++ b/tests/src/JIT/Performance/CodeQuality/BenchI/Array2/Array2.csproj
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
@@ -16,9 +16,9 @@
<NuGetTargetMoniker>.NETStandard,Version=v1.4</NuGetTargetMoniker>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "></PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
+ <PropertyGroup>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
@@ -38,6 +38,5 @@
<ProjectLockJson>$(JitPackagesConfigFileDirectory)benchmark\project.lock.json</ProjectLockJson>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
- <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
- </PropertyGroup>
-</Project>
+ <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "></PropertyGroup>
+</Project> \ No newline at end of file