forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonAssemblyInfo.cs
More file actions
49 lines (45 loc) · 1.95 KB
/
CommonAssemblyInfo.cs
File metadata and controls
49 lines (45 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
#if !BUILD_GENERATED_VERSION
[assembly: AssemblyCompany(".NET Foundation")]
[assembly: AssemblyCopyright("Copyright © .NET Foundation. All rights reserved.")]
#endif
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
#if !NOT_CLS_COMPLIANT
[assembly: CLSCompliant(true)]
#endif
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyMetadata("Serviceable", "True")]
// ===================================================================================
// TAKE CARE WHEN EDITING OR REMOVING ANYTHING BELOW THIS COMMENT.
// BUILD_GENERATED_VERSION will be set in any CI build. Versions below are not used.
// ===================================================================================
#if (ASPNETMVC && (ASPNETWEBPAGES || ASPNETFACEBOOK)) || (ASPNETWEBPAGES && ASPNETFACEBOOK)
#error Runtime projects cannot define more than one of ASPNETMVC, ASPNETWEBPAGES or ASPNETFACEBOOK
#elif ASPNETMVC
#if !BUILD_GENERATED_VERSION
[assembly: AssemblyVersion("5.2.7.0")] // ASPNETMVC
[assembly: AssemblyFileVersion("5.2.7.0")] // ASPNETMVC
#endif
[assembly: AssemblyProduct("Microsoft ASP.NET MVC")]
#elif ASPNETWEBPAGES
#if !BUILD_GENERATED_VERSION
[assembly: AssemblyVersion("3.0.0.0")] // ASPNETWEBPAGES
[assembly: AssemblyFileVersion("3.0.0.0")] // ASPNETWEBPAGES
#endif
[assembly: AssemblyProduct("Microsoft ASP.NET Web Pages")]
#elif ASPNETFACEBOOK
#if !BUILD_GENERATED_VERSION
[assembly: AssemblyVersion("1.1.0.0")] // ASPNETFACEBOOK
[assembly: AssemblyFileVersion("1.1.0.0")] // ASPNETFACEBOOK
#endif
[assembly: AssemblyProduct("Microsoft ASP.NET Facebook")]
#else
#error Runtime projects must define ASPNETMVC, ASPNETWEBPAGES or ASPNETFACEBOOK
#endif