Skip to content

Commit 8af2c16

Browse files
committed
Add platform to Tests build
1 parent 13b3f5b commit 8af2c16

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Libraries/Build.ps1

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,14 @@ ForEach ($p in $client_projects) {
5656

5757
Write-Host "Building Client Tests" -ForegroundColor Yellow
5858

59-
msbuild "$source_dir\Tests\Exceptionless.Tests.csproj" /p:Configuration="$configuration" /t:Rebuild /p:NoWarn="1591 1711 1712 1572 1573 1574" /verbosity:minimal /p:TargetFrameworkVersionProperty="NET45" /p:TargetPortable="false"
59+
msbuild "$source_dir\Tests\Exceptionless.Tests.csproj" `
60+
/p:Configuration="$configuration" `
61+
/p:Platform="AnyCPU" `
62+
/t:Rebuild `
63+
/p:NoWarn="1591 1711 1712 1572 1573 1574" `
64+
/verbosity:minimal `
65+
/p:TargetFrameworkVersionProperty="NET45" `
66+
/p:TargetPortable="false"
6067

6168
Write-Host "Finished building Client Tests" -ForegroundColor Yellow
6269

0 commit comments

Comments
 (0)