Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / Entity / Design / AspNet / BuildProviderUtils.cs / 1305376 / BuildProviderUtils.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.CodeDom; using System.CodeDom.Compiler; using System.Globalization; using System.IO; using System.Resources; using System.Web; using System.Web.Compilation; using System.Web.Hosting; namespace System.Data.Entity.Design.AspNet { ////// A place to put common methods used by our build providers /// /// internal class BuildProviderUtils { ////// Default constructor /// private BuildProviderUtils() { } internal static void AddArtifactReference(AssemblyBuilder assemblyBuilder, BuildProvider prov, string virtualPath) { // add the artifact as a resource to the DLL using (Stream input = VirtualPathProvider.OpenFile(virtualPath)) { // derive the resource name string name = BuildProviderUtils.GetResourceNameForVirtualPath(virtualPath); using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { int byteRead = input.ReadByte(); while (byteRead != -1) { resStream.WriteByte((byte)byteRead); byteRead = input.ReadByte(); } } } } ////// Transforms a virtual path string into a valid resource name. /// /// ///internal static string GetResourceNameForVirtualPath(string virtualPath) { string name = VirtualPathUtility.ToAppRelative(virtualPath); Debug.Assert(name.StartsWith("~/"), "Expected app-relative path to start with ~/"); if (name.StartsWith("~/", StringComparison.OrdinalIgnoreCase)) { name = name.Substring(2); } name = name.Replace("/", "."); Debug.Assert(name.StartsWith(".") == false, "resource name unexpectedly starts with ."); return name; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.CodeDom; using System.CodeDom.Compiler; using System.Globalization; using System.IO; using System.Resources; using System.Web; using System.Web.Compilation; using System.Web.Hosting; namespace System.Data.Entity.Design.AspNet { ////// A place to put common methods used by our build providers /// /// internal class BuildProviderUtils { ////// Default constructor /// private BuildProviderUtils() { } internal static void AddArtifactReference(AssemblyBuilder assemblyBuilder, BuildProvider prov, string virtualPath) { // add the artifact as a resource to the DLL using (Stream input = VirtualPathProvider.OpenFile(virtualPath)) { // derive the resource name string name = BuildProviderUtils.GetResourceNameForVirtualPath(virtualPath); using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { int byteRead = input.ReadByte(); while (byteRead != -1) { resStream.WriteByte((byte)byteRead); byteRead = input.ReadByte(); } } } } ////// Transforms a virtual path string into a valid resource name. /// /// ///internal static string GetResourceNameForVirtualPath(string virtualPath) { string name = VirtualPathUtility.ToAppRelative(virtualPath); Debug.Assert(name.StartsWith("~/"), "Expected app-relative path to start with ~/"); if (name.StartsWith("~/", StringComparison.OrdinalIgnoreCase)) { name = name.Substring(2); } name = name.Replace("/", "."); Debug.Assert(name.StartsWith(".") == false, "resource name unexpectedly starts with ."); return name; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BatchWriter.cs
- ClientSponsor.cs
- NotifyParentPropertyAttribute.cs
- CommandID.cs
- FreezableOperations.cs
- sqlcontext.cs
- TypeCollectionDesigner.xaml.cs
- ResourcePropertyMemberCodeDomSerializer.cs
- SystemIcons.cs
- EventsTab.cs
- ContactManager.cs
- ManualResetEvent.cs
- XhtmlTextWriter.cs
- InteropBitmapSource.cs
- SQLDoubleStorage.cs
- HttpProfileGroupBase.cs
- DataControlField.cs
- EndpointAddressProcessor.cs
- SqlExpander.cs
- PathSegmentCollection.cs
- TranslateTransform3D.cs
- AsymmetricSignatureDeformatter.cs
- AppDomainAttributes.cs
- HttpHandlersSection.cs
- Type.cs
- PageVisual.cs
- OutputCacheProfileCollection.cs
- TransactionException.cs
- TypeListConverter.cs
- HtmlInputReset.cs
- GridView.cs
- IISMapPath.cs
- XmlCharacterData.cs
- SystemColors.cs
- DataGridViewToolTip.cs
- MultiSelectRootGridEntry.cs
- ProviderIncompatibleException.cs
- WebControlParameterProxy.cs
- TextBoxRenderer.cs
- RectValueSerializer.cs
- TextBoxView.cs
- XmlSerializerNamespaces.cs
- DynamicObject.cs
- cache.cs
- CqlLexerHelpers.cs
- StorageFunctionMapping.cs
- DataGridViewDataConnection.cs
- InsufficientMemoryException.cs
- PrintingPermission.cs
- AsyncOperation.cs
- SmiMetaDataProperty.cs
- Decorator.cs
- OwnerDrawPropertyBag.cs
- Opcode.cs
- MenuItem.cs
- WebPartPersonalization.cs
- WebPartTransformer.cs
- WsatServiceCertificate.cs
- FixedPage.cs
- ItemCollection.cs
- VirtualPath.cs
- EnumMember.cs
- AttributeData.cs
- ToolStripItemClickedEventArgs.cs
- ResourceContainerWrapper.cs
- DatePickerDateValidationErrorEventArgs.cs
- XmlKeywords.cs
- OLEDB_Enum.cs
- StringValidator.cs
- HttpWebRequest.cs
- CssStyleCollection.cs
- Merger.cs
- ServiceNameElementCollection.cs
- NumberSubstitution.cs
- ClipboardData.cs
- EventDrivenDesigner.cs
- DbProviderServices.cs
- ColorConverter.cs
- GenericRootAutomationPeer.cs
- CommonDialog.cs
- PropertyFilterAttribute.cs
- DesignerSerializationOptionsAttribute.cs
- UIElementCollection.cs
- EventDescriptor.cs
- XmlExtensionFunction.cs
- UInt64Converter.cs
- StorageInfo.cs
- ObjectDataSourceMethodEventArgs.cs
- EventDescriptor.cs
- SystemDiagnosticsSection.cs
- PeerNameResolver.cs
- RSAPKCS1SignatureFormatter.cs
- CopyAction.cs
- GeometryDrawing.cs
- MailDefinition.cs
- ProfileProvider.cs
- Math.cs
- XNodeNavigator.cs
- ObjectViewFactory.cs
- SHA256Cng.cs