Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit 63ee2ac

Browse files
author
Darrell Tunnell
committed
Fixed issue with incorrect Platform in csproj
1 parent c0b40be commit 63ee2ac

File tree

1 file changed

+4
-13
lines changed

1 file changed

+4
-13
lines changed

src/GitTools.Core.Tests/GitTools.Core.Tests.csproj

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<Platform Condition=" '$(Platform)' == '' ">Any CPU</Platform>
66

77
<OutputType>Library</OutputType>
88
<TargetFramework>net46</TargetFramework>
@@ -11,24 +11,15 @@
1111
</PropertyGroup>
1212
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1313
<DebugSymbols>true</DebugSymbols>
14-
<DebugType>full</DebugType>
15-
<Optimize>false</Optimize>
14+
<DebugType>full</DebugType>
1615
<OutputPath>..\..\output\debug\GitTools.Core.Tests\$(TargetFramework)\</OutputPath>
17-
<DefineConstants>TRACE;DEBUG</DefineConstants>
18-
<ErrorReport>prompt</ErrorReport>
19-
<WarningLevel>4</WarningLevel>
20-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
21-
<NoWarn>1591,1701</NoWarn>
16+
<DefineConstants>TRACE;DEBUG</DefineConstants>
2217
</PropertyGroup>
2318
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2419
<DebugType>pdbonly</DebugType>
2520
<Optimize>true</Optimize>
2621
<OutputPath>..\..\output\release\GitTools.Core.Tests\$(TargetFramework)\</OutputPath>
27-
<DefineConstants>TRACE</DefineConstants>
28-
<ErrorReport>prompt</ErrorReport>
29-
<WarningLevel>4</WarningLevel>
30-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
31-
<NoWarn>1591</NoWarn>
22+
<DefineConstants>TRACE</DefineConstants>
3223
</PropertyGroup>
3324

3425
<ItemGroup>

0 commit comments

Comments
 (0)