Search Issue Tracker
By Design
Votes
0
Found in
2018.1.0b9
2018.2.4f1
Issue ID
1073592
Regression
Yes
Package Manager tries to include Editor scripts in builds
To reproduce:
1. Open the user's attached project
2. Add the "Dummy" scene to the Build Settings
2. Try building a standalone for Windows or Mac or Linux
Expected result: The editor only scripts are not included in the Build
Actual result: Unity tries to include the editor only script in the build which results in an error
[Project Dir]/CustomPackages/EditorScriptPackage/Editor/SampleEditorScript.cs(5,3): error CS0246: The type or namespace name `MenuItem' could not be found. Are you missing an assembly reference?
Reproduced with: 2018.1.0b9, 2018.1.9f1, 2018.2.5f1
Not reproduced with: 2017.4.9f1, 2018.1.0b8
Regression started in 2018.1.0b9
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Resolution Note:
By design: Packages rely on .asmdef files to know if a script is an Editor script or runtime script. In 2018.2, scripts not mapped to an .asmdef would default to runtime scripts. In 2018.3, this has been clarified and .asmdef files _must_ be present; scripts not mapped to an .asmdef will not be compiled and a relevant warning will be output to the console.