Skip to content

Commit

Permalink
Removed isEnabled property
Browse files Browse the repository at this point in the history
  • Loading branch information
Nice3point committed May 21, 2024
1 parent 7338205 commit 83bb518
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 4.0.4

- Removed template engine "isEnabled" property. Visual Studio does not support it compared to Jetbrains Rider.
This property caused an exception to create a Module project without UI.
Thanks to @SergeyNefyodov for finding this bug

# 4.0.3

- Remove Core folder. It's seldom used, especially in small plugins, so it's removed by default. Thank you for your feedback
Expand Down
2 changes: 1 addition & 1 deletion build/Build.Configuration.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sealed partial class Build
{
const string Version = "4.0.3";
const string Version = "4.0.4";
readonly AbsolutePath ArtifactsDirectory = RootDirectory / "output";
readonly AbsolutePath ChangeLogPath = RootDirectory / "Changelog.md";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
"displayName": "Inject dependencies",
"datatype": "bool",
"description": "Inject dependencies into a command to call from the host application. Applies if the user interface is enabled",
"defaultValue": "false",
"isEnabled": "window != \"none\""
"defaultValue": "false"
},
"NoWindow": {
"type": "computed",
Expand Down

0 comments on commit 83bb518

Please sign in to comment.