Skip to content

Commit bbaa891

Browse files
committed
Preparations for release
1 parent c46a8c6 commit bbaa891

18 files changed

+24
-23
lines changed

Angular/KY.Generator.Angular.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
8+
<Version>4.0.0</Version>
99
<Copyright>2020 - KY-Programming</Copyright>
1010
<Description>Angular Module for KY-Generator
1111
Download KY.Generator to use this module</Description>

AspDotNet/KY.Generator.AspDotNet.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
7+
<Version>4.0.0</Version>
88
<Product>KY.Generator</Product>
99
<Description>ASP.net Module for KY-Generator
1010
Download KY.Generator to use this module</Description>

CLI.Core/KY.Generator.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
6+
<Version>4.0.0</Version>
77
<Authors>KY-Programming</Authors>
88
<Product>KY.Generator</Product>
99
<Copyright>2020 - KY-Programming</Copyright>

CLI.Core/nuget.nuspec

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

CLI.Core/nuget.targets

Lines changed: 2 additions & 2 deletions
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\4.0.0-rc.6\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild beforeBuild"
4+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator\4.0.0\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%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\4.0.0-rc.6\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild"
9+
<Exec Command="dotnet %22%25USERPROFILE%25\.nuget\packages\ky.generator\4.0.0\tools\KY.Generator.dll%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild"
1010
CustomErrorRegularExpression="^Error:"
1111
CustomWarningRegularExpression="^Warning:"></Exec>
1212
</Target>

CLI/nuget.nuspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,18 @@
33
<metadata>
44
<id>KY.Generator.CLI</id>
55
<!-- Ensure nuget.targets version is also updated -->
6-
<version>4.0.0-rc.6</version>
6+
<version>4.0.0</version>
77
<title>KY.Generator.CLI</title>
88
<authors>KY-Programming</authors>
99
<owners>KY-Programming</owners>
1010
<licenseUrl>https://github.com/KY-Programming/generator/blob/master/LICENSE</licenseUrl>
1111
<projectUrl>https://github.com/KY-Programming/generator</projectUrl>
1212
<iconUrl>https://ky-programming.de/images/logos/128.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>Install this only for .NET FRAMEWORK assemblies!
15-
Contains the basic features without dependencies.
16-
Generate classes from oData, .NET assembly, JSON or TSQL to C# or TypeScript. Support Angular, ASP.NET, ASP.NET Core, C# POCOs, TypeScript POCOs, Entity Framework and more.</description>
14+
<description>Command Line Interface for KY-Generator.
15+
Generate C# or TypeScript classes from .NET assemblies, JSON, TSQL or oData.
16+
Support for Angular, ASP.NET, ASP.NET Core, C# POCOs, TypeScript POCOs, Entity Framework and more.
17+
</description>
1718
<releaseNotes></releaseNotes>
1819
<copyright>Copyright 2020</copyright>
1920
<tags>KY-Generator KY Generator CLI</tags>

CLI/nuget.targets

Lines changed: 2 additions & 2 deletions
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.4.0.0-rc.6\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild beforeBuild"
4+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.4.0.0\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild beforeBuild"
55
CustomErrorRegularExpression="^Error:"
66
CustomWarningRegularExpression="^Warning:"></Exec>
77
</Target> <Target Name="KYGeneratorCLIAfterTarget" AfterTargets="AfterBuild">
8-
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.4.0.0-rc.6\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild"
8+
<Exec Command="%22$(SolutionDir)packages\ky.generator.cli.4.0.0\tools\KY.Generator.exe%22 %22$(ProjectDir)generator.json%22 -output=%22$(ProjectDir)\%22 -assembly=%22$(TargetPath)%22 msbuild"
99
CustomErrorRegularExpression="^Error:"
1010
CustomWarningRegularExpression="^Warning:"></Exec>
1111
</Target>

Core/KY.Generator.Core.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
8+
<Version>4.0.0</Version>
99
<Description>Core elements for KY-Generator
1010
Download KY.Generator to use this module</Description>
1111
<Copyright>2020 - KY-Programming</Copyright>

Csharp/KY.Generator.CSharp.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
8+
<Version>4.0.0</Version>
99
<Description>C# Module for KY-Generator
1010
Download KY.Generator to use this module</Description>
1111
<Copyright>2020 - KY-Programming</Copyright>

EntityFramework/KY.Generator.EntityFramework.csproj

Lines changed: 1 addition & 1 deletion
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>4.0.0-rc.6</Version>
8+
<Version>4.0.0</Version>
99
<Copyright>2020 - KY-Programming</Copyright>
1010
<Description>EntityFramework Module for KY-Generator
1111
Download KY.Generator to use this module</Description>

0 commit comments

Comments
 (0)