Skip to content

Commit 8bede64

Browse files
committed
Update bee scripts
1 parent 47856b1 commit 8bede64

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.bee/entitas.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ DESPERATEDEVS_EDITOR=(
7979
'DesperateDevs.Unity.Editor.dll'
8080
)
8181
DESPERATEDEVS_IMAGES=(
82-
'JennyHeader.png'
83-
'JennyHeader.png.meta'
82+
'Jenny-Header.png'
83+
'Jenny-Header.png.meta'
8484
)
8585
DESPERATEDEVS_PLUGINS=(
8686
'DesperateDevs.CodeGeneration.Plugins.dll'
@@ -96,7 +96,7 @@ entitas::update() {
9696
}
9797

9898
entitas::generate() {
99-
dotnet::build
99+
msbuild::build
100100
local properties=(
101101
'Tests/TestFixtures/Preferences.properties'
102102
'Readme/Prefrences.properties'
@@ -215,7 +215,7 @@ entitas::pack_entitas_unity() {
215215
entitas::pack() {
216216
log_func
217217
entitas::update
218-
dotnet::rebuild
218+
msbuild::rebuild
219219
nspec::run
220220

221221
utils::clean_dir "${BUILD_SRC}" "${BUILD_DIST}"

Addons/Entitas.CodeGeneration.Plugins/Entitas.CodeGeneration.Plugins/CodeGeneratorExtentions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public static string GetEventPrefix(this EventData eventData) {
108108

109109
public static string GetMethodParameters(this MemberData[] memberData, bool newPrefix) {
110110
return string.Join(", ", memberData
111-
.Select(info => info.type + (newPrefix ? " new" + info.name.UppercaseFirst() : " " + info.name))
111+
.Select(info => info.type + (newPrefix ? " new" + info.name.UppercaseFirst() : " " + info.name.LowercaseFirst()))
112112
.ToArray());
113113
}
114114

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Entitas.VisualDebugging.Unity.Editor.SystemWarningThreshold = 5
1+
Entitas.VisualDebugging.Unity.Editor.SystemWarningThreshold = 1
22
Entitas.VisualDebugging.Unity.Editor.DefaultInstanceCreatorFolderPath = Assets/Editor/DefaultInstanceCreator
33
Entitas.VisualDebugging.Unity.Editor.TypeDrawerFolderPath = Assets/Editor/TypeDrawer

bee.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22
PROJECT="Entitas"
3-
PLUGINS=(changelog dotnet doxygen git github nspec tree utils version)
3+
PLUGINS=(changelog doxygen git github msbuild nspec tree utils version)
44
RESOURCES=.bee
55

66
source "${RESOURCES}"/entitas.sh
@@ -9,9 +9,6 @@ source "${RESOURCES}"/entitas.sh
99
CHANGELOG_PATH=CHANGELOG.md
1010
CHANGELOG_CHANGES=CHANGES.md
1111

12-
# dotnet
13-
DOTNET_SOLUTION="${PROJECT}.sln"
14-
1512
# doxygen => utils version
1613
DOXYGEN_EXPORT_PATH=docs
1714
DOXYGEN_DOXY_FILES=("${RESOURCES}"/docs/html.doxyfile)
@@ -29,7 +26,10 @@ if [[ -f "${HOME}/.bee/github.sh" ]]; then
2926
source "${HOME}/.bee/github.sh"
3027
fi
3128

32-
# nspec => dotnet
29+
# msbuild
30+
MSBUILD_SOLUTION="${PROJECT}.sln"
31+
32+
# nspec => msbuild
3333
NSPEC_TESTS_PROJECT=Tests/Tests/Tests.csproj
3434
NSPEC_TESTS_RUNNER=Tests/Tests/bin/Release/Tests.exe
3535

0 commit comments

Comments
 (0)