Skip to content
This repository has been archived by the owner on Sep 5, 2019. It is now read-only.

Commit

Permalink
v0.3.5.1 Hotfix for getting assembly version.
Browse files Browse the repository at this point in the history
  • Loading branch information
alvr committed Sep 24, 2016
1 parent 2004cd7 commit b91e39f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ASFui/ASFui.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public partial class ASFui : Form

public ASFui()
{
Util.CheckVersion();
while (!Util.CheckBinary())
{
var result = MessageBox.Show(@"ASF binary setting not configured. Configure now?",
Expand All @@ -39,7 +40,6 @@ public ASFui()
Environment.Exit(-2);
}
InitializeComponent();
Util.CheckVersion();
_isLocal = Properties.Settings.Default.IsLocal;
}

Expand Down
1 change: 1 addition & 0 deletions ASFui/ASFui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@
<Content Include="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="version.txt" />
<None Include="NLog.xsd">
<SubType>Designer</SubType>
</None>
Expand Down
4 changes: 2 additions & 2 deletions ASFui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.3.5.0")]
[assembly: AssemblyFileVersion("0.3.5.0")]
[assembly: AssemblyVersion("0.3.5.1")]
[assembly: AssemblyFileVersion("0.3.5.1")]
1 change: 1 addition & 0 deletions ASFui/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.3.5.1

0 comments on commit b91e39f

Please sign in to comment.