-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V3 IsDirty is a string #243
Labels
Comments
dang, yeah, this is a bug due to a missing feature in ThisAssembly.Constants |
For now, you can workaround the issue by changing your code to: if (bool.TryParse(ThisAssembly.Git.IsDirtyString, out var isDirty) && isDirty)
{
} |
kzu
added a commit
that referenced
this issue
Feb 22, 2023
With the change to ThisAssembly.Constants, we introduced a bug that caused IsDirty to be a string contant, instead of the boolean it was up to 2.3. Closes #243
kzu
added a commit
that referenced
this issue
Feb 22, 2023
With the change to ThisAssembly.Constants, we introduced a bug that caused IsDirty to be a string contant, instead of the boolean it was up to 2.3. Closes #243
kzu
added a commit
that referenced
this issue
Feb 22, 2023
With the change to ThisAssembly.Constants, we introduced a bug that caused IsDirty to be a string contant, instead of the boolean it was up to 2.3. Closes #243
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Describe the Bug
In a C# blazor project using ThisAssembly.Git.IsDirty.
After updating to v3
I get the error CS0029 Cannot implicitly convert type 'string' to 'bool'
ThisAssembly.Git.IsDirtyString is also empty
Steps to Reproduce
use IsDirty as a bool
Version Info
V3.0.2
Additional Info
The text was updated successfully, but these errors were encountered: