Skip to content

Commit 0648141

Browse files
committed
Versioning and bug fix for issue #36
1 parent 82007fa commit 0648141

File tree

10 files changed

+12
-43
lines changed

10 files changed

+12
-43
lines changed

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.22335.0.1")]
36+
[assembly: AssemblyFileVersion("1.22339.0.1")]

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.22335.0.1")]
36+
[assembly: AssemblyFileVersion("1.22339.0.1")]

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.22335.0.1")]
36+
[assembly: AssemblyFileVersion("1.22339.0.1")]

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.22335.0.1")]
36+
[assembly: AssemblyFileVersion("1.22339.0.1")]

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Loader/SdkSupport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static class SdkSupport
2323
/// <summary>
2424
/// The maximum version of the SDK that can be loaded and used.
2525
/// </summary>
26-
public const string MaxVersion = "1.22335.0.1";
26+
public const string MaxVersion = "1.22339.0.1";
2727

2828
/// <summary>
2929
/// The target version of the NuGet package this SDK is deployed from.

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

Lines changed: 3 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -11,42 +11,11 @@
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.22335.1
14+
SDK Update for CodeFactory 1.22339.1
1515

1616
This release of the SDK focuses on the following.
17-
- Have updated the injection process of code into files. You no longer have to provide the file path, framework determines this.
18-
- Have added an overload to AddBeforeAsync functionality to allow you to add directly before the definition of the model ignoring xml documentation.
19-
- LookupModel is now obsolete use GetModel now.
20-
- Added GetModel[T] this allows to set the target type to return instead of having to cast to directly.
21-
- CodeFactory.Formatting.CSharp has been moved into the SDK.
22-
- NamespaceManager in formatting now supports adding additional using statements after the manager has been loaded.
23-
- CsManualUsingStatement has been added to formatting to allow adding customizing using statements to the namespace manager.
24-
- Can now directly control code documentation from the SDK. Added the following code management methods to control documentation.
25-
- AddBeforeDocsAsync - Add source code content before XML documentation.
26-
- AddAfterDocsAsync - Add source code content after XML documentation.
27-
- ReplaceDocsAsync - Replaces the XML documentation.
28-
- DeleteDocsAsync - Deletes the XML documentation.
29-
- CsProperty mode has added the following capabilities.
30-
- GetMethod property has been added to give you direct access to the get accessor and all the code management functions of the method.
31-
- SetMethod property has been added to give you direct access to the set accessor and all the code management functions of the method.
32-
- CsEnum mode has added the following capabilities
33-
- Can now inject code at the beginning of the Enum body.
34-
- Can now inject code at the end of the Enum body.
35-
- Can now get the source location of the contents of the Enum body.
36-
- CsContainer Types (Class,Interface, Structure) now support nested type definitions, this includes the following.
37-
- Class,Interface, Structure, and Enums can be nested in the above container types.
38-
- CSMethod now provide partial support in definition which includes the following.
39-
- Method Partial Definition - The capture of the definition of a partial method.
40-
- Method Partial Implementation - The capture of the implementation of a partial method.
41-
- When getting the list of methods you will get two instance models now. One for the definition and second for the implementation.
42-
- CsMethodType has added two additional enums PartialDefinition and PartialImplementation.
43-
- XML Documentation for all models is directly captured from source code so the raw documentation is provided. This includes the following.
44-
- Partial implementations will provide the target xml documentation that was provided.
45-
If documentation was provided in each partial file it will grab the target file the model generation was requested from.
46-
- All C# Models now have a ModelSourceFile property that identifies the source code file the model was generated from.
47-
- Fixed an issue with the Visual Studio packager not able to process project paths that had spaces in the path.
48-
- Packager now injects the target platform and SDK version information directly into assemblies during the build of CodeFactory automation.
49-
This is used to confirm the library is supported by the runtime.
17+
- Bug fix for bug https://github.com/CodeFactoryLLC/CodeFactory/issues/36
18+
- Issue was with how reflections of an assembly was reading the custom attributes assigned to the assembly. Has been fixed and validated.
5019
</releaseNotes>
5120
<copyright>Copyright 2022</copyright>
5221
<tags>Factory Automation</tags>

src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Packager/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ private static int WriteNewAssemblyInfo(string assemblyPath)
354354
assemblyFileContents.Add("using System.Runtime.InteropServices;");
355355
assemblyFileContents.Add("");
356356
assemblyFileContents.Add("[assembly: AssemblyVersion(\"1.0.0.0\")]");
357-
assemblyFileContents.Add("[assembly: AssemblyFileVersion(\"1.22335.0.1\")]");
357+
assemblyFileContents.Add("[assembly: AssemblyFileVersion(\"1.22339.0.1\")]");
358358
assemblyFileContents.Add("[assembly: AssemblyCFEnvironment(\"CFVSW\")]");
359359
assemblyFileContents.Add($"[assembly: AssemblyCFSdkVersion(\"{LoadFileVersion()}\")]");
360360

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
3636
[assembly: AssemblyVersion("1.0.0.0")]
37-
[assembly: AssemblyFileVersion("1.22335.0.1")]
37+
[assembly: AssemblyFileVersion("1.22339.0.1")]

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.22335.0.1")]
55+
[assembly: AssemblyFileVersion("1.22339.0.1")]
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.22335.0.1")]
36+
[assembly: AssemblyFileVersion("1.22339.0.1")]

0 commit comments

Comments
 (0)