Skip to content

Commit cff7bcb

Browse files
committed
Fixed an issue where the config section was being placed in the wrong assembly.
1 parent 13a63fa commit cff7bcb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Exceptionless/NuGet/tools/exceptionless.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function update_config($configPath, $platform) {
4848
}
4949
$configSection = $configXml.CreateElement('section')
5050
$configSection.SetAttribute('name', 'exceptionless')
51-
$configSection.SetAttribute('type', 'Exceptionless.ExceptionlessSection, Exceptionless.Portable')
51+
$configSection.SetAttribute('type', 'Exceptionless.ExceptionlessSection, Exceptionless')
5252

5353
$parentNode.AppendChild($configSection)
5454
$shouldSave = $true

src/Platforms/Exceptionless.Nancy/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"files": {
1919
"mappings": {
2020
"tools/": "NuGet/tools/*",
21-
"tools/exceptionless.psm1":"../../Exceptionless.Portable/NuGet/tools/exceptionless.psm1"
21+
"tools/exceptionless.psm1":"../../Exceptionless/NuGet/tools/exceptionless.psm1"
2222
},
2323
"include": [ "readme.txt" ]
2424
}

0 commit comments

Comments
 (0)