File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed
Addons/Entitas.CodeGeneration.Plugins/Entitas.CodeGeneration.Plugins
Tests/Unity/VisualDebugging Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ DESPERATEDEVS_EDITOR=(
7979 ' DesperateDevs.Unity.Editor.dll'
8080)
8181DESPERATEDEVS_IMAGES=(
82- ' JennyHeader .png'
83- ' JennyHeader .png.meta'
82+ ' Jenny-Header .png'
83+ ' Jenny-Header .png.meta'
8484)
8585DESPERATEDEVS_PLUGINS=(
8686 ' DesperateDevs.CodeGeneration.Plugins.dll'
@@ -96,7 +96,7 @@ entitas::update() {
9696}
9797
9898entitas::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() {
215215entitas::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} "
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1- Entitas.VisualDebugging.Unity.Editor.SystemWarningThreshold = 5
1+ Entitas.VisualDebugging.Unity.Editor.SystemWarningThreshold = 1
22Entitas.VisualDebugging.Unity.Editor.DefaultInstanceCreatorFolderPath = Assets/Editor/DefaultInstanceCreator
33Entitas.VisualDebugging.Unity.Editor.TypeDrawerFolderPath = Assets/Editor/TypeDrawer
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22PROJECT=" Entitas"
3- PLUGINS=(changelog dotnet doxygen git github nspec tree utils version)
3+ PLUGINS=(changelog doxygen git github msbuild nspec tree utils version)
44RESOURCES=.bee
55
66source " ${RESOURCES} " /entitas.sh
@@ -9,9 +9,6 @@ source "${RESOURCES}"/entitas.sh
99CHANGELOG_PATH=CHANGELOG.md
1010CHANGELOG_CHANGES=CHANGES.md
1111
12- # dotnet
13- DOTNET_SOLUTION=" ${PROJECT} .sln"
14-
1512# doxygen => utils version
1613DOXYGEN_EXPORT_PATH=docs
1714DOXYGEN_DOXY_FILES=(" ${RESOURCES} " /docs/html.doxyfile)
@@ -29,7 +26,10 @@ if [[ -f "${HOME}/.bee/github.sh" ]]; then
2926 source " ${HOME} /.bee/github.sh"
3027fi
3128
32- # nspec => dotnet
29+ # msbuild
30+ MSBUILD_SOLUTION=" ${PROJECT} .sln"
31+
32+ # nspec => msbuild
3333NSPEC_TESTS_PROJECT=Tests/Tests/Tests.csproj
3434NSPEC_TESTS_RUNNER=Tests/Tests/bin/Release/Tests.exe
3535
You can’t perform that action at this time.
0 commit comments