Skip to content

Commit 22dd9af

Browse files
committed
updated version 6.0.2 -> 6.0.3
1 parent fe7ab27 commit 22dd9af

File tree

5 files changed

+7
-30
lines changed

5 files changed

+7
-30
lines changed

appveyor.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,11 @@ init:
77
- git config --global core.autocrlf false
88

99
before_build:
10-
- ps: 'if (($env:APPVEYOR_REPO_TAG -eq "true") -and ($env:APPVEYOR_REPO_TAG_NAME -match "^nobuild"))
11-
{
12-
echo "Skipping build, because the tag has the ''nobuild'' prefix.";
13-
Exit-AppVeyorBuild;
14-
}'
1510
- dotnet restore src/TypeGen/TypeGen.Cli
1611
- dotnet restore src/TypeGen/TypeGen.Core
1712
- dotnet restore src/TypeGen/TypeGen.Cli.Test
1813
- dotnet restore src/TypeGen/TypeGen.Core.Test
1914
- dotnet restore src/TypeGen/TypeGen.FileContentTest
2015

2116
build:
22-
project: src/TypeGen/TypeGen.sln
23-
24-
after_test:
25-
- ps: ./publish.ps1 -nobuild
26-
27-
artifacts:
28-
- path: '*.nupkg'
29-
name: NuGet packages
30-
31-
deploy:
32-
provider: NuGet
33-
api_key:
34-
secure: hlPXdsDMIeQzAdvV3tnuHMcBnYsbMecgLfVB6TYc1r5NuU7Wizc8y1QPqF/vxjxR
35-
skip_symbols: true
36-
on:
37-
branch: master
38-
APPVEYOR_REPO_TAG: true
17+
project: src/TypeGen/TypeGen.sln

nuget-dotnetcli/dotnet-typegen.nuspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>dotnet-typegen</id>
5-
<version>6.0.2</version>
5+
<version>6.0.3</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,8 +11,7 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen .NET CLI tool (TypeGen is a single-class-per-file C# to TypeScript generator)</description>
1313
<releaseNotes>
14-
- new lines are now normalized to Environment.NewLine in the generated files
15-
- re-added changes from PR #208 (Import line break was not using the OS's newline)
14+
- added TsRequiredAttribute for definite assignment assertion operator (#219)
1615
</releaseNotes>
1716
<tags>code-generator generator code typescript ts csharp cs dotnet cli</tags>
1817
<packageTypes>

nuget/TypeGen.nuspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>TypeGen</id>
5-
<version>6.0.2</version>
5+
<version>6.0.3</version>
66
<authors>Jacek Burzynski</authors>
77
<owners>Jacek Burzynski</owners>
88
<license type="file">LICENSE</license>
@@ -11,8 +11,7 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>TypeGen is a single-class-per-file C# to TypeScript generator</description>
1313
<releaseNotes>
14-
- new lines are now normalized to Environment.NewLine in the generated files
15-
- re-added changes from PR #208 (Import line break was not using the OS's newline)
14+
- added TsRequiredAttribute for definite assignment assertion operator (#219)
1615
</releaseNotes>
1716
<tags>code-generator generator code typescript ts csharp cs</tags>
1817
<dependencies>

src/TypeGen/TypeGen.Cli/ApplicationConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace TypeGen.Cli;
22

33
internal class ApplicationConfig
44
{
5-
public const string Version = "6.0.2";
5+
public const string Version = "6.0.3";
66
}

src/TypeGen/TypeGen.Cli/TypeGen.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyVersion>6.0.0.0</AssemblyVersion>
66
<FileVersion>6.0.0.0</FileVersion>
7-
<Version>6.0.2</Version>
7+
<Version>6.0.3</Version>
88
<PackageId>TypeGen</PackageId>
99
<Authors />
1010
</PropertyGroup>

0 commit comments

Comments
 (0)