-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move AssemblyVersion into common file and specify version bands based…
… on netstandard level
- Loading branch information
Oren Novotny
committed
Jul 10, 2016
1 parent
40d832b
commit 548cd01
Showing
38 changed files
with
143 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
| ||
using System.Reflection; | ||
|
||
|
||
#if NETSTANDARD1_0 || WP8 | ||
[assembly: AssemblyVersion("3.0.0.0")] | ||
#elif NETSTANDARD1_1 || WINDOWS8 || NET45 || NETCORE45 | ||
[assembly: AssemblyVersion("3.0.1000.0")] | ||
#elif NETSTANDARD1_2 || WINDOWS81 || NET451 || NETCORE451 || WPA81 | ||
[assembly: AssemblyVersion("3.0.2000.0")] | ||
#elif NETSTANDARD1_3 || NET46 | ||
[assembly: AssemblyVersion("3.0.3000.0")] | ||
#elif NETSTANDARD1_4 || UAP10_0 || NETCORE50 || NET461 | ||
[assembly: AssemblyVersion("3.0.4000.0")] | ||
#elif NETSTANDARD1_5 || NET462 | ||
[assembly: AssemblyVersion("3.0.5000.0")] | ||
#elif NETSTANDARD1_6 || NETCOREAPP1_0 || NET463 | ||
[assembly: AssemblyVersion("3.0.6000.0")] | ||
#else // this is here to prevent the build system from complaining. It should never be hit | ||
[assembly: AssemblyVersion("invalid")] | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
| ||
using System.Reflection; | ||
|
||
|
||
#if NETSTANDARD1_0 || WP8 | ||
[assembly: AssemblyVersion("3.0.0.0")] | ||
#elif NETSTANDARD1_1 || WINDOWS8 || NET45 || NETCORE45 | ||
[assembly: AssemblyVersion("3.0.1000.0")] | ||
#elif NETSTANDARD1_2 || WINDOWS81 || NET451 || NETCORE451 || WPA81 | ||
[assembly: AssemblyVersion("3.0.2000.0")] | ||
#elif NETSTANDARD1_3 || NET46 | ||
[assembly: AssemblyVersion("3.0.3000.0")] | ||
#elif NETSTANDARD1_4 || UAP10_0 || NETCORE50 || NET461 | ||
[assembly: AssemblyVersion("3.0.4000.0")] | ||
#elif NETSTANDARD1_5 || NET462 | ||
[assembly: AssemblyVersion("3.0.5000.0")] | ||
#elif NETSTANDARD1_6 || NETCOREAPP1_0 || NET463 | ||
[assembly: AssemblyVersion("3.0.6000.0")] | ||
#else // this is here to prevent the build system from complaining. It should never be hit | ||
[assembly: AssemblyVersion("invalid")] | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
Rx.NET/Source/System.Reactive.Observable.Aliases/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Resources; | ||
using System.Runtime.InteropServices; | ||
using System.Security; | ||
|
||
[assembly: AssemblyTitle("System.Reactive.Observable.Aliases")] | ||
// Notice: same description as in the .nuspec files; see Source/Rx/Setup/NuGet | ||
[assembly: AssemblyDescription("Reactive Extensions provides the aliases Map, FlatMap, and Filter.")] | ||
#if DEBUG | ||
[assembly: AssemblyConfiguration("Debug")] | ||
#else | ||
[assembly: AssemblyConfiguration("Retail")] | ||
#endif | ||
[assembly: AssemblyCompany(".NET Foundation and Contributors.")] | ||
[assembly: AssemblyProduct("Reactive Extensions")] | ||
[assembly: AssemblyCopyright("\x00a9 .NET Foundation and Contributors. All rights reserved.")] | ||
[assembly: NeutralResourcesLanguage("en-US")] | ||
|
||
#if !PLIB | ||
[assembly: ComVisible(false)] | ||
#endif | ||
|
||
[assembly: CLSCompliant(true)] | ||
|
||
#if HAS_APTCA && NO_CODECOVERAGE | ||
[assembly: AllowPartiallyTrustedCallers] | ||
#endif | ||
|
||
// =========================================================================== | ||
// DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT. | ||
// Version numbers are automatically generated in the msbuild files based on regular expressions | ||
// =========================================================================== | ||
|
||
[assembly: AssemblyFileVersion("2.2.0.0")] | ||
[assembly: AssemblyInformationalVersion("2.2.0.0")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.