Skip to content

Commit 909e514

Browse files
Merge pull request #128 from PassivePicasso/fix-nunit-2018.4.12
fix: restore nunit.framework reference in ThunderKit.Core.Tests.asmdef
2 parents 1531eed + 30f3a7d commit 909e514

2 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717
`#search-input` now absorbs the flex/shrink so the `EnumFlagsField` and help
1818
button keep their natural size instead of colliding
1919

20+
### Tests
21+
22+
* [ThunderKit.Core.Tests](Tests/Editor/ThunderKit.Core.Tests.asmdef) now declares
23+
`nunit.framework.dll` as a precompiled reference instead of an assembly definition
24+
reference, so the test assembly resolves on Unity 2018.4.12 — the minimum editor
25+
version declared in `package.json`
26+
2027
### Community Contributions
2128

2229
* Thanks to @jan-bures for adding conditional compilation for Unity version

Tests/Editor/ThunderKit.Core.Tests.asmdef

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"ThunderKit.Core",
55
"ThunderKit.Common",
66
"ThunderKit.Markdown",
7-
"ThunderKit.Thunderstore",
8-
"nunit.framework"
7+
"ThunderKit.Thunderstore"
98
],
109
"optionalUnityReferences": [
1110
"TestAssemblies"
@@ -17,7 +16,8 @@
1716
"allowUnsafeCode": false,
1817
"overrideReferences": true,
1918
"precompiledReferences": [
20-
"AssetsTools.NET.dll"
19+
"AssetsTools.NET.dll",
20+
"nunit.framework.dll"
2121
],
2222
"autoReferenced": true,
2323
"defineConstraints": []

0 commit comments

Comments
 (0)