www.pudn.com > sudoku.rar > AssemblyInfo.cs
//--------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: AssemblyInfo.cs
//
// Description: Assembly level attributes
//
//--------------------------------------------------------------------------
using System;
using System.Reflection;
using System.Security.Permissions;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
// General information about the assembly
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyCopyright("Copyright © 2006 Microsoft Corporation. All Rights Reserved.")]
[assembly: AssemblyProduct("Microsoft Sudoku")]
[assembly: AssemblyTrademark("Microsoft (R) is a registered trademark of Microsoft Corporation. Windows (R) is a registered trademark of Microsoft Corporation.")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyTitle("Microsoft Sudoku")]
[assembly: AssemblyDescription("Microsoft Sudoku")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyKeyFile("")]
// CLS compliance, COM visibility, and a unique ID for this assembly (used for single-instance)
[assembly: CLSCompliant(false)]
[assembly: ComVisible(false)]
[assembly: Guid("c2b4f894-ceda-4768-b323-654faeaea994")]
// Request basic permissions needed to at least put up a message box to communicate with user.
// Without this, there's no point in even running as nothing useful can be shown to the user
// and they won't know why the app isn't running.
[assembly: UIPermission(SecurityAction.RequestMinimum, Window=UIPermissionWindow.SafeSubWindows)]