We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf3fd1 commit b59121fCopy full SHA for b59121f
Libraries/Build.ps1
@@ -8,6 +8,11 @@ ForEach ($p in $client_projects) {
8
Continue;
9
}
10
11
+ $isWebApi = ($($p.Name) -eq "Exceptionless.WebApi") -or ($($p.Name) -eq "Exceptionless.WebApi.Signed")
12
+ If ($isWebApi -and ($($b.TargetFrameworkVersionProperty) -ne "NET45")) {
13
+ Continue;
14
+ }
15
+
16
$targetPortable = 'false';
17
If ($isPclClient -and ($($b.NuGetDir) -eq "portable-net40+sl50+win+wpa81+wp80")) {
18
$targetPortable = 'true';
0 commit comments