Skip to content

Commit

Permalink
Changing build quality for release builds only
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzyk committed Apr 6, 2017
1 parent b4491da commit 5a619c8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion build/Microsoft.AspNet.SignalR.versions.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
<!-- Change this to set the build quality of the project. Use values like "alpha", "beta", "rc1", "rtm", etc. -->
<!-- These values are used in SemVer, so make sure to always increase these alphabetically. -->
<!-- For non-nightly RTM builds, we don't set the build quality. -->
<BuildQuality Condition="'$(Nightly)' == 'true'">preview1</BuildQuality>
<BuildQuality Condition="'$(Nightly)' == 'true'">pre</BuildQuality>
<BuildQuality Condition="'$(Nightly)' != 'true'">preview1</BuildQuality>
<ScaleoutBuildQuality Condition="'$(Nightly)' == 'true'">pre</ScaleoutBuildQuality>
<ScaleoutBuildQuality Condition="'$(Nightly)' != 'true'">preview1</ScaleoutBuildQuality>
<KatanaBuildQuality Condition="'$(Nightly)' == 'true'">rtw</KatanaBuildQuality>

<!-- Katana version -->
Expand Down
2 changes: 1 addition & 1 deletion src/Common/CommonVersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

[assembly: AssemblyVersion("2.2.2")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("2.2.2-preview1")]
[assembly: AssemblyInformationalVersion("2.2.2-pre")]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*global window:false */
/*!
* ASP.NET SignalR JavaScript Library v2.2.2-preview1
* ASP.NET SignalR JavaScript Library v2.2.2-pre
* http://signalr.net/
*
* Copyright (c) .NET Foundation. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
/*global window:false */
/// <reference path="jquery.signalR.core.js" />
(function ($, undefined) {
$.signalR.version = "2.2.2-preview1";
$.signalR.version = "2.2.2-pre";
}(window.jQuery));
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Core/Scripts/hubs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* ASP.NET SignalR JavaScript Library v2.2.2-preview1
* ASP.NET SignalR JavaScript Library v2.2.2-pre
* http://signalr.net/
*
* Copyright (c) .NET Foundation. All rights reserved.
Expand Down

0 comments on commit 5a619c8

Please sign in to comment.