You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After adding latest stable version(3.0.5) to my project and building below issue is happening.
Error CS0103 The name 'IsDirtyString' does not exist in the current context ..\ThisAssembly.Git.IsDirty.g.cs 19 Active
Steps to Reproduce
Add this library to function app project targeting .net 6.0 framework.
partialclassThisAssembly{partialclassGit{/// <summary>/// Gets whether the current repository is dirty./// </summary>publicstaticboolIsDirty=>bool.TryParse(IsDirtyString,outvardirty)&&dirty;}}
Expected Behavior
project should build successfully.
Version Info
.net6.0
The text was updated successfully, but these errors were encountered:
A missing feature in NuGetizer (see devlooped/nugetizer#388) caused our dependency on ThisAssembly.Constants to be lost now that it explicitly sets itself as PrivateAssets=all to prevent analyzer propagation to referenced projects.
This scenario (a package reference with PrivateAssets=all AND Pack=true) was not supported by NuGetizer.
We now do, so this bump is enough to fix the issue.
Fixes#281
A missing feature in NuGetizer (see devlooped/nugetizer#388) caused our dependency on ThisAssembly.Constants to be lost now that it explicitly sets itself as PrivateAssets=all to prevent analyzer propagation to referenced projects.
This scenario (a package reference with PrivateAssets=all AND Pack=true) was not supported by NuGetizer.
We now do, so this bump is enough to fix the issue.
Fixes#281
Describe the Bug
After adding latest stable version(3.0.5) to my project and building below issue is happening.
Error CS0103 The name 'IsDirtyString' does not exist in the current context ..\ThisAssembly.Git.IsDirty.g.cs 19 Active
Steps to Reproduce
Add this library to function app project targeting .net 6.0 framework.
Expected Behavior
project should build successfully.
Version Info
.net6.0
The text was updated successfully, but these errors were encountered: