Skip to content

Commit f7960fb

Browse files
authored
Merge pull request #63 from tksh164/dev/bump-app-version-0.3.0
Bump app version to v0.3.0
2 parents d4ce72d + 8230d7a commit f7960fb

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

src/alter/alter.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<PropertyGroup>
1818
<!-- NuGet package -->
19-
<Version>0.2.0</Version>
19+
<Version>0.3.0</Version>
2020
<Title>Alter RDP client</Title>
2121
<Description>Alter is a remote desktop client application.</Description>
2222
<Authors>Takeshi Katano</Authors>
@@ -26,12 +26,15 @@
2626
<RepositoryType>git</RepositoryType>
2727
<NeutralLanguage>en-US</NeutralLanguage>
2828

29+
<!-- Value definition for other properties -->
30+
<VersionSuffix>$([System.DateTime]::UtcNow.ToString(MMdd))$([System.DateTime]::UtcNow.ToString(yy)[1])</VersionSuffix>
31+
2932
<!-- AssemblyInfo -->
3033
<Company></Company>
3134
<Product>Alter</Product>
32-
<FileVersion>$(Version)</FileVersion>
33-
<InformationalVersion>$(Version)</InformationalVersion>
34-
<AssemblyVersion>$(Version)</AssemblyVersion>
35+
<FileVersion>$(Version).$(VersionSuffix)</FileVersion>
36+
<InformationalVersion>$(Version).$(VersionSuffix)</InformationalVersion>
37+
<AssemblyVersion>$(Version).$(VersionSuffix)</AssemblyVersion>
3538
<AssemblyTitle>$(Title)</AssemblyTitle>
3639
</PropertyGroup>
3740

src/msrdcax/msrdcax.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<PropertyGroup>
1414
<!-- NuGet package -->
15-
<Version>0.2.0</Version>
15+
<Version>0.3.0</Version>
1616
<Title>Remote Desktop Services ActiveX client for Alter</Title>
1717
<Description>$(Title)</Description>
1818
<Authors>Takeshi Katano</Authors>
@@ -22,12 +22,15 @@
2222
<RepositoryType>git</RepositoryType>
2323
<NeutralLanguage>en-US</NeutralLanguage>
2424

25+
<!-- Value definition for other properties -->
26+
<VersionSuffix>$([System.DateTime]::UtcNow.ToString(MMdd))$([System.DateTime]::UtcNow.ToString(yy)[1])</VersionSuffix>
27+
2528
<!-- AssemblyInfo -->
2629
<Company></Company>
2730
<Product>MsRdcAx</Product>
28-
<FileVersion>$(Version)</FileVersion>
29-
<InformationalVersion>$(Version)</InformationalVersion>
30-
<AssemblyVersion>$(Version)</AssemblyVersion>
31+
<FileVersion>$(Version).$(VersionSuffix)</FileVersion>
32+
<InformationalVersion>$(Version).$(VersionSuffix)</InformationalVersion>
33+
<AssemblyVersion>$(Version).$(VersionSuffix)</AssemblyVersion>
3134
<AssemblyTitle>$(Title)</AssemblyTitle>
3235
</PropertyGroup>
3336

0 commit comments

Comments
 (0)