Skip to content

Commit f3f8564

Browse files
committed
Updated CsContainer to fix a bug with IsNested not returning data.
1 parent c505333 commit f3f8564

File tree

12 files changed

+339
-12
lines changed

12 files changed

+339
-12
lines changed

src/CodeFactoryVisualStudio/CodeFactory.DotNet/CSharp/CsContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,6 @@ protected CsContainer(bool isLoaded, bool hasErrors, bool loadedFromSource, Sour
509509
/// <summary>
510510
/// Flag that determines if this model is nested in a parent model.
511511
/// </summary>
512-
public bool IsNested { get; }
512+
public bool IsNested => _isNested;
513513
}
514514
}

src/CodeFactoryVisualStudio/CodeFactory.DotNet/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/CodeFactory.Formatting.CSharp/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/CodeFactory.Logging/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Loader/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Packager/CodeFactorySDK.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd" >
33
<metadata>
44
<id>CodeFactorySDK</id>
5-
<version>1.22305.1</version>
5+
<version>1.22307.1</version>
66
<title>CodeFactory Software Development Kit</title>
77
<authors>CodeFactory, LLC.</authors>
88
<owners>CodeFactory, LLC.</owners>
@@ -11,7 +11,7 @@
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1212
<description>Software factory automation library used with the CodeFactory for Visual Studio.</description>
1313
<releaseNotes>
14-
SDK Update for CodeFactory 1.22305.1
14+
SDK Update for CodeFactory 1.22307.1
1515

1616
This release of the SDK focuses on the following.
1717
- Have updated the injection process of code into files. You no longer have to provide the file path, framework determines this.

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Packager/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
5454
[assembly: AssemblyVersion("1.0.0.0")]
55-
[assembly: AssemblyFileVersion("1.22305.01")]
55+
[assembly: AssemblyFileVersion("1.22307.01")]
5656
[assembly: Guid("34699FC7-0F5E-4BDF-899F-6EBC55A4A6DA")]
5757

src/CodeFactoryVisualStudio/CodeFactory/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.22305.01")]
36+
[assembly: AssemblyFileVersion("1.22307.01")]

src/CodeFactoryVisualStudio/Documentation/log.txt

Lines changed: 327 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)