File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,17 @@ ForEach ($p in $client_projects) {
24
24
Continue ;
25
25
}
26
26
27
+ $isWebApi = ($ ($p.Name ) -eq " Exceptionless.WebApi" ) -or ($ ($p.Name ) -eq " Exceptionless.WebApi.Signed" )
28
+ If ($isWebApi -and ($ ($b.TargetFrameworkVersionProperty ) -ne " NET45" )) {
29
+ Continue ;
30
+ }
31
+
32
+ # Temporary fix for nlog until https://github.com/NLog/NLog/issues/729 is fixed.
33
+ $isNLog = ($ ($p.Name ) -eq " Exceptionless.NLog" ) -or ($ ($p.Name ) -eq " Exceptionless.NLog.Signed" )
34
+ If ($isNLog -and ($ ($b.TargetFrameworkVersionProperty ) -ne " NET45" )) {
35
+ Continue ;
36
+ }
37
+
27
38
$buildDirectory = " $build_dir \$configuration \$ ( $p.Name ) \lib\$ ( $b.NuGetDir ) "
28
39
$workingLibDirectory = " $workingDirectory \lib\$ ( $b.NuGetDir ) "
29
40
Create- Directory $workingLibDirectory
You can’t perform that action at this time.
0 commit comments