Skip to content

Commit b509ab7

Browse files
committed
Angular
- empty url date parameters use empty string instead of undefined
1 parent 70e2aa8 commit b509ab7

32 files changed

+61
-61
lines changed

Angular/KY.Generator.Angular.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Authors>KY-Programming</Authors>
66
<Company>KY-Programming</Company>
77
<Product>KY.Generator</Product>
8-
<Version>3.3.0-rc.2</Version>
8+
<Version>3.3.0-rc.3</Version>
99
<Copyright>2019 - KY-Programming</Copyright>
1010
<Description>Angular Module for KY-Generator
1111
Download KY.Generator.CLI to use this module</Description>

Angular/Writers/AngularServiceWriter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public virtual void Write(AngularWriteConfiguration configuration, List<ITransfe
181181
classTemplate.AddMethod("convertAny", Code.Type("string"))
182182
.WithParameter(Code.Type("any"), "value")
183183
.WithCode(Code.Return(Code.InlineIf(Code.Local("value").Equals().ForceNull().Or().Local("value").Equals().Undefined(),
184-
Code.Undefined(),
184+
Code.String(string.Empty),
185185
Code.Local("value").Method("toString")
186186
)
187187
));
@@ -191,7 +191,7 @@ public virtual void Write(AngularWriteConfiguration configuration, List<ITransfe
191191
classTemplate.AddMethod("convertDate", Code.Type("string"))
192192
.WithParameter(Code.Type("Date"), "date")
193193
.WithCode(Code.Return(Code.InlineIf(Code.Local("date").Equals().ForceNull().Or().Local("date").Equals().Undefined(),
194-
Code.Undefined(),
194+
Code.String(string.Empty),
195195
Code.InlineIf(Code.TypeScript($"typeof(date) === \"string\""),
196196
Code.Local("date"),
197197
Code.Local("date").Method("toISOString")

AspDotNet/KY.Generator.AspDotNet.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>ASP.net Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>

CLI.Core.Full/KY.Generator.CLI.Core.Full.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.2</TargetFramework>
6-
<Version>3.3.0-rc.2</Version>
6+
<Version>3.3.0-rc.3</Version>
77
<Authors>KY-Programming</Authors>
88
<Product>KY.Generator</Product>
99
<Copyright>2019 - KY-Programming</Copyright>

CLI.Core.Full/nuget.nuspec

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI.Core.Full</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI.Core.Full</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>
@@ -17,17 +17,17 @@ Generate classes from oData, .NET assembly, JSON or TSQL to C# or TypeScript. Su
1717
<copyright>Copyright 2019</copyright>
1818
<tags>KY-Generator KY Generator .netCore CLI</tags>
1919
<dependencies>
20-
<dependency id="KY.Generator.Angular" version="3.3.0-rc.2" />
21-
<dependency id="KY.Generator.AspDotNet" version="3.3.0-rc.2" />
22-
<dependency id="KY.Generator.Core" version="3.3.0-rc.2" />
23-
<dependency id="KY.Generator.Csharp" version="3.3.0-rc.2" />
24-
<dependency id="KY.Generator.EntityFramework" version="3.3.0-rc.2" />
25-
<dependency id="KY.Generator.Json" version="3.3.0-rc.2" />
26-
<dependency id="KY.Generator.OData" version="3.3.0-rc.2" />
27-
<dependency id="KY.Generator.OpenApi" version="3.3.0-rc.2" />
28-
<dependency id="KY.Generator.Reflection" version="3.3.0-rc.2" />
29-
<dependency id="KY.Generator.Tsql" version="3.3.0-rc.2" />
30-
<dependency id="KY.Generator.TypeScript" version="3.3.0-rc.2" />
20+
<dependency id="KY.Generator.Angular" version="3.3.0-rc.3" />
21+
<dependency id="KY.Generator.AspDotNet" version="3.3.0-rc.3" />
22+
<dependency id="KY.Generator.Core" version="3.3.0-rc.3" />
23+
<dependency id="KY.Generator.Csharp" version="3.3.0-rc.3" />
24+
<dependency id="KY.Generator.EntityFramework" version="3.3.0-rc.3" />
25+
<dependency id="KY.Generator.Json" version="3.3.0-rc.3" />
26+
<dependency id="KY.Generator.OData" version="3.3.0-rc.3" />
27+
<dependency id="KY.Generator.OpenApi" version="3.3.0-rc.3" />
28+
<dependency id="KY.Generator.Reflection" version="3.3.0-rc.3" />
29+
<dependency id="KY.Generator.Tsql" version="3.3.0-rc.3" />
30+
<dependency id="KY.Generator.TypeScript" version="3.3.0-rc.3" />
3131
</dependencies>
3232
</metadata>
3333
<files>

CLI.Core.Full/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLICoreFullBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.full\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
4+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.full\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target>
88
<Target Name="KYGeneratorCLICoreFullTarget" AfterTargets="AfterBuild">
9-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.full\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
9+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.full\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI.Core.Minimal/KY.Generator.CLI.Core.Minimal.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.2</TargetFramework>
6-
<Version>3.3.0-rc.2</Version>
6+
<Version>3.3.0-rc.3</Version>
77
<Authors>KY-Programming</Authors>
88
<Product>KY.Generator</Product>
99
<Copyright>2019 - KY-Programming</Copyright>

CLI.Core.Minimal/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI.Core.Minimal</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI.Core.Minimal</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>

CLI.Core.Minimal/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLICoreMinimalBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.minimal\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
4+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.minimal\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target>
88
<Target Name="KYGeneratorCLICoreMinimalAfterTarget" AfterTargets="AfterBuild">
9-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.minimal\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
9+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core.minimal\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI.Core.Standalone/KY.Generator.CLI.Core.Standalone.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.2</TargetFramework>
6-
<Version>3.3.0-rc.2</Version>
6+
<Version>3.3.0-rc.3</Version>
77
<Authors>KY-Programming</Authors>
88
<Product>KY.Generator</Product>
99
<Copyright>2019 - KY-Programming</Copyright>

CLI.Core.Standalone/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>KY.Generator.CLI.Core.Standalone</id>
5-
<version>3.3.0-rc.2</version>
5+
<version>3.3.0-rc.3</version>
66
<title>KY.Generator.CLI.Core.Standalone</title>
77
<authors>KY-Programming</authors>
88
<owners>KY-Programming</owners>

CLI.Core/KY.Generator.CLI.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>netcoreapp2.2</TargetFramework>
6-
<Version>3.3.0-rc.2</Version>
6+
<Version>3.3.0-rc.3</Version>
77
<Authors>KY-Programming</Authors>
88
<Product>KY.Generator</Product>
99
<Copyright>2019 - KY-Programming</Copyright>

CLI.Core/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI.Core</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI.Core</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>

CLI.Core/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLICoreBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild beforeBuild"
4+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild beforeBuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target>
88
<Target Name="KYGeneratorCLICoreAfterTarget" AfterTargets="AfterBuild">
9-
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core\3.3.0-rc.2\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
9+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator.cli.core\3.3.0-rc.3\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI.Full/nuget.nuspec

+12-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI.Full</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI.Full</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>
@@ -17,17 +17,17 @@ Generate classes from oData, .NET assembly, JSON or TSQL to C# or TypeScript. Su
1717
<copyright>Copyright 2019</copyright>
1818
<tags>KY-Generator KY Generator CLI</tags>
1919
<dependencies>
20-
<dependency id="KY.Generator.Angular" version="3.3.0-rc.2" />
21-
<dependency id="KY.Generator.AspDotNet" version="3.3.0-rc.2" />
22-
<dependency id="KY.Generator.Core" version="3.3.0-rc.2" />
23-
<dependency id="KY.Generator.Csharp" version="3.3.0-rc.2" />
24-
<dependency id="KY.Generator.EntityFramework" version="3.3.0-rc.2" />
25-
<dependency id="KY.Generator.Json" version="3.3.0-rc.2" />
26-
<dependency id="KY.Generator.OData" version="3.3.0-rc.2" />
27-
<dependency id="KY.Generator.OpenApi" version="3.3.0-rc.2" />
28-
<dependency id="KY.Generator.Reflection" version="3.3.0-rc.2" />
29-
<dependency id="KY.Generator.Tsql" version="3.3.0-rc.2" />
30-
<dependency id="KY.Generator.TypeScript" version="3.3.0-rc.2" />
20+
<dependency id="KY.Generator.Angular" version="3.3.0-rc.3" />
21+
<dependency id="KY.Generator.AspDotNet" version="3.3.0-rc.3" />
22+
<dependency id="KY.Generator.Core" version="3.3.0-rc.3" />
23+
<dependency id="KY.Generator.Csharp" version="3.3.0-rc.3" />
24+
<dependency id="KY.Generator.EntityFramework" version="3.3.0-rc.3" />
25+
<dependency id="KY.Generator.Json" version="3.3.0-rc.3" />
26+
<dependency id="KY.Generator.OData" version="3.3.0-rc.3" />
27+
<dependency id="KY.Generator.OpenApi" version="3.3.0-rc.3" />
28+
<dependency id="KY.Generator.Reflection" version="3.3.0-rc.3" />
29+
<dependency id="KY.Generator.Tsql" version="3.3.0-rc.3" />
30+
<dependency id="KY.Generator.TypeScript" version="3.3.0-rc.3" />
3131
</dependencies>
3232
</metadata>
3333
<files>

CLI.Full/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLIFullBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.full.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
4+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.full.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target>
88
<Target Name="KYGeneratorCLIFullAfterTarget" AfterTargets="AfterBuild">
9-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.full.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
9+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.full.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI.Minimal/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI.Minimal</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI.Minimal</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>

CLI.Minimal/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLIMinimalBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.minimal.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
4+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.minimal.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target>
88
<Target Name="KYGeneratorCLIMinimalTarget" AfterTargets="AfterBuild">
9-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.minimal.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
9+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.minimal.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI.Standalone/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>KY.Generator.CLI.Standalone</id>
5-
<version>3.3.0-rc.2</version>
5+
<version>3.3.0-rc.3</version>
66
<title>KY.Generator.CLI</title>
77
<authors>KY-Programming</authors>
88
<owners>KY-Programming</owners>

CLI/nuget.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>KY.Generator.CLI</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>3.3.0-rc.2</version>
6+
<version>3.3.0-rc.3</version>
77
<title>KY.Generator.CLI</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>

CLI/nuget.targets

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="KYGeneratorCLIBeforeTarget" BeforeTargets="BeforeBuild">
4-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
4+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target> <Target Name="KYGeneratorCLIAfterTarget" AfterTargets="AfterBuild">
8-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.3.3.0-rc.2\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
8+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.3.3.0-rc.3\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 %22$(ProjectDir)\%22 msbuild"
99
CustomErrorRegularExpression="^Error:"
1010
CustomWarningRegularExpression="^Warning:"></Exec>
1111
</Target>

Core/KY.Generator.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
77
<Product>KY.Generator</Product>
8-
<Version>3.3.0-rc.2</Version>
8+
<Version>3.3.0-rc.3</Version>
99
<Description>Core elements for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>
1111
<Copyright>2019 - KY-Programming</Copyright>

Csharp/KY.Generator.CSharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Authors>KY-Programming</Authors>
66
<Company>KY-Programming</Company>
77
<Product>KY.Generator</Product>
8-
<Version>3.3.0-rc.2</Version>
8+
<Version>3.3.0-rc.3</Version>
99
<Description>C# Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>
1111
<Copyright>2019 - KY-Programming</Copyright>

EntityFramework/KY.Generator.EntityFramework.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Authors>KY-Programming</Authors>
66
<Company>KY-Programming</Company>
77
<Product>KY.Generator</Product>
8-
<Version>3.3.0-rc.2</Version>
8+
<Version>3.3.0-rc.3</Version>
99
<Copyright>2019 - KY-Programming</Copyright>
1010
<Description>EntityFramework Module for KY-Generator
1111
Download KY.Generator.CLI to use this module</Description>

Json/KY.Generator.Json.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>JSON Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>

OData/KY.Generator.OData.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>oData Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>

OpenApi/KY.Generator.OpenApi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>OpenApi Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>

Reflection.Annotations/KY.Generator.Reflection.Annotations.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>Annotations for Reflection Module for KY-Generator</Description>
1010
<Copyright>2019 - KY-Programming</Copyright>

Reflection/KY.Generator.Reflection.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Company>KY-Programming</Company>
66
<Authors>KY-Programming</Authors>
7-
<Version>3.3.0-rc.2</Version>
7+
<Version>3.3.0-rc.3</Version>
88
<Product>KY.Generator</Product>
99
<Description>Reflection Module for KY-Generator
1010
Download KY.Generator.CLI to use this module</Description>

0 commit comments

Comments
 (0)