File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,12 @@ ForEach ($p in $client_projects) {
13
13
Continue ;
14
14
}
15
15
16
+ # Temporary fix for nlog until https://github.com/NLog/NLog/issues/729 is fixed.
17
+ $isNLog = ($ ($p.Name ) -eq " Exceptionless.NLog" ) -or ($ ($p.Name ) -eq " Exceptionless.NLog.Signed" )
18
+ If ($isNLog -and ($ ($b.TargetFrameworkVersionProperty ) -ne " NET45" )) {
19
+ Continue ;
20
+ }
21
+
16
22
$targetPortable = ' false' ;
17
23
If ($isPclClient -and ($ ($b.NuGetDir ) -eq " portable-net40+sl50+win+wpa81+wp80" )) {
18
24
$targetPortable = ' true' ;
Original file line number Diff line number Diff line change 9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >Exceptionless.NLog</RootNamespace >
11
11
<AssemblyName >Exceptionless.NLog</AssemblyName >
12
- <TargetFrameworkVersion >v4.0 </TargetFrameworkVersion >
12
+ <TargetFrameworkVersion >v4.5 </TargetFrameworkVersion >
13
13
<FileAlignment >512</FileAlignment >
14
14
<TargetFrameworkProfile >
15
15
</TargetFrameworkProfile >
42
42
</PropertyGroup >
43
43
<ItemGroup >
44
44
<Reference Include =" NLog" >
45
- <HintPath >..\..\..\packages\NLog.3.2.1\lib\net40 \NLog.dll</HintPath >
45
+ <HintPath >..\..\..\packages\NLog.3.2.1\lib\net45 \NLog.dll</HintPath >
46
46
</Reference >
47
47
<Reference Include =" System" />
48
48
<Reference Include =" System.Core" />
You can’t perform that action at this time.
0 commit comments