forked from microsoft/XboxConsole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfoCore.cs
More file actions
27 lines (23 loc) · 1.02 KB
/
Copy pathAssemblyInfoCore.cs
File metadata and controls
27 lines (23 loc) · 1.02 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
//------------------------------------------------------------------------------
// <copyright file="AssemblyInfoCore.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]
[assembly: AssemblyProduct("Xbox Console")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
// Version information for this assembly consists of the following four values:
//
// Major Version
// Minor Version
// 0 for local builds, an encoded date for team builds. (Year Mod 5)(2 digit Month)(2 digit Day)
// 0 for local builds, a per Major.Minor.Date revision for team builds.
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]