Skip to content

Commit

Permalink
Changed assembly version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Oct 22, 2013
1 parent ab9d2fd commit f64b38e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/Build.proj
Expand Up @@ -35,7 +35,7 @@

<PropertyGroup>
<PrereleaseTagWithSeparator Condition="$(BuildQuality) != ''">-$(BuildQuality)</PrereleaseTagWithSeparator>
<AssemblyVersion>$(MajorVersion).$(MinorVersion).$(PatchVersion)</AssemblyVersion>
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0</AssemblyVersion>
<PackageVersion>$(MajorVersion).$(MinorVersion).$(PatchVersion)$(PrereleaseTagWithSeparator)</PackageVersion>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Common/CommonVersionInfo.cs
Expand Up @@ -2,6 +2,6 @@

using System.Reflection;

[assembly: AssemblyVersion("1.1.4")]
[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyInformationalVersion("1.1.4")]
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Client/Connection.cs
Expand Up @@ -721,7 +721,7 @@ private static string CreateUserAgentString(string client)
if (_assemblyVersion == null)
{
#if NETFX_CORE
_assemblyVersion = new Version("1.1.4");
_assemblyVersion = new Version("1.1.0");
#else
_assemblyVersion = new AssemblyName(typeof(Connection).Assembly.FullName).Version;
#endif
Expand Down

0 comments on commit f64b38e

Please sign in to comment.