| 1234567891011121314151617181920212223242526272829 |
- #region File Description
- //-----------------------------------------------------------------------------
- // AssemblyInfo.cs
- //
- // Microsoft Game Technology Group
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- #endregion
- #region Using Statements
- using System.Reflection;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- #endregion
- //Descriptive Assembly attributes
- [assembly: AssemblyTitle("Non-Photorealistic")]
- [assembly: AssemblyProduct("Non-Photorealistic")]
- [assembly: AssemblyDescription("This sample shows how to implement stylized non-photorealistic rendering techniques such as cartoon shading, edge detection, and a pencil sketch effect.")]
- [assembly: AssemblyCompany("Microsoft Corporation")]
- [assembly: AssemblyCopyright("Copyright (C) Microsoft Corporation 2007")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: AssemblyVersion("1.0.0.0")]
- //ComVisible is false for this component.
- [assembly: ComVisible(false)]
- [assembly: Guid("11c51b17-8982-46cc-8477-e5ccf51a27b1")]
|