Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit e172ffe

Browse files
committed
Bugfix for access to null reference of ProjectContent.
1 parent c49498f commit e172ffe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Main/Base/Project/Dom/IEntityModelContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public string AssemblyName {
7575

7676
public string FullAssemblyName {
7777
get {
78-
if (project.ProjectContent == null) {
78+
if (project.ProjectContent != null) {
7979
return project.ProjectContent.FullAssemblyName;
8080
}
8181

0 commit comments

Comments
 (0)