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
- XsltContext.cs
- Enum.cs
- Deflater.cs
- SafeBitVector32.cs
- FormParameter.cs
- DrawingDrawingContext.cs
- Frame.cs
- MemoryPressure.cs
- OleDbDataReader.cs
- StructuredTypeEmitter.cs
- Vector3D.cs
- XmlBinaryReader.cs
- ContainerSelectorActiveEvent.cs
- NGCUIElementCollectionSerializerAsync.cs
- DesignSurface.cs
- InputMethod.cs
- ZoomPercentageConverter.cs
- _ContextAwareResult.cs
- ReferencedType.cs
- Dispatcher.cs
- SqlGatherProducedAliases.cs
- ToolStripDropDownItemDesigner.cs
- ColumnHeaderCollectionEditor.cs
- DbReferenceCollection.cs
- DecoderFallbackWithFailureFlag.cs
- PanelDesigner.cs
- ConfigXmlCDataSection.cs
- InputBinder.cs
- DataGridViewCellEventArgs.cs
- FixedHighlight.cs
- TextDecorationCollection.cs
- HierarchicalDataTemplate.cs
- ToolStripGrip.cs
- LexicalChunk.cs
- TreeView.cs
- ValidatorCompatibilityHelper.cs
- ToolStripDropDownDesigner.cs
- NativeWrapper.cs
- SystemBrushes.cs
- WindowShowOrOpenTracker.cs
- XsltLibrary.cs
- ListSurrogate.cs
- FixedLineResult.cs
- PrimitiveXmlSerializers.cs
- InheritedPropertyDescriptor.cs
- FontEmbeddingManager.cs
- AttributeQuery.cs
- ContextBase.cs
- SafeLocalMemHandle.cs
- DataGridViewAccessibleObject.cs
- PlanCompiler.cs
- DataControlFieldCollection.cs
- LogicalExpressionTypeConverter.cs
- BitmapEffectCollection.cs
- StreamHelper.cs
- DocumentXmlWriter.cs
- _OverlappedAsyncResult.cs
- Input.cs
- FormatVersion.cs
- NamespaceListProperty.cs
- userdatakeys.cs
- TextElement.cs
- ErasingStroke.cs
- AvTrace.cs
- ImportDesigner.xaml.cs
- TypeValidationEventArgs.cs
- EditorOptionAttribute.cs
- CodeFieldReferenceExpression.cs
- WebPartConnectionsEventArgs.cs
- TabControlToolboxItem.cs
- ProcessModelSection.cs
- PointAnimationUsingKeyFrames.cs
- OperationContextScope.cs
- XPathParser.cs
- Assign.cs
- Char.cs
- TokenizerHelper.cs
- SchemaImporterExtensionsSection.cs
- BezierSegment.cs
- TokenizerHelper.cs
- Style.cs
- BridgeDataReader.cs
- ActivationServices.cs
- DataControlCommands.cs
- AnnotationComponentManager.cs
- ColorDialog.cs
- RuntimeConfigLKG.cs
- AudioFileOut.cs
- XmlAtomErrorReader.cs
- SettingsBase.cs
- VisualState.cs
- DataTableClearEvent.cs
- SelectionPatternIdentifiers.cs
- XmlElementAttributes.cs
- DataList.cs
- SqlTypesSchemaImporter.cs
- SourceFilter.cs
- SerializationException.cs
- SamlSecurityToken.cs
- ParentQuery.cs