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
- SqlParameterCollection.cs
- WebPartConnectionsCancelEventArgs.cs
- FormsAuthentication.cs
- SymDocumentType.cs
- GenericRootAutomationPeer.cs
- APCustomTypeDescriptor.cs
- PropertyGridView.cs
- DBAsyncResult.cs
- Object.cs
- Main.cs
- DataRowComparer.cs
- TextSearch.cs
- ReliableDuplexSessionChannel.cs
- FlowDocumentReaderAutomationPeer.cs
- BackgroundFormatInfo.cs
- CallId.cs
- XmlIlTypeHelper.cs
- CultureInfo.cs
- PropertyChangingEventArgs.cs
- WebPartConnectionsConnectVerb.cs
- ConsoleTraceListener.cs
- ProvidePropertyAttribute.cs
- ConfigurationPermission.cs
- StylusPointCollection.cs
- RuntimeResourceSet.cs
- NativeWindow.cs
- XmlILOptimizerVisitor.cs
- FirstMatchCodeGroup.cs
- SqlTriggerContext.cs
- ManualWorkflowSchedulerService.cs
- ExtendedPropertyDescriptor.cs
- WebConfigurationFileMap.cs
- MessageQueueCriteria.cs
- QueryCacheManager.cs
- ToolStripDropTargetManager.cs
- SpecialFolderEnumConverter.cs
- ChangeConflicts.cs
- QuaternionConverter.cs
- AnnotationResourceChangedEventArgs.cs
- ToolStripScrollButton.cs
- SiteMapNodeCollection.cs
- RegistryPermission.cs
- BackgroundFormatInfo.cs
- ConfigXmlCDataSection.cs
- PerformanceCounter.cs
- DataColumnPropertyDescriptor.cs
- IIS7WorkerRequest.cs
- BlockCollection.cs
- ConfigurationManagerHelperFactory.cs
- PenLineCapValidation.cs
- FormsAuthenticationModule.cs
- SqlStatistics.cs
- SaveFileDialogDesigner.cs
- PolygonHotSpot.cs
- BamlLocalizationDictionary.cs
- BindableTemplateBuilder.cs
- Literal.cs
- ImageSourceValueSerializer.cs
- ISAPIApplicationHost.cs
- Panel.cs
- ExtensionCollection.cs
- Annotation.cs
- WebPartConnectionsCancelVerb.cs
- TypedTableBase.cs
- RepeatBehavior.cs
- InvalidAsynchronousStateException.cs
- RightNameExpirationInfoPair.cs
- TextTreeObjectNode.cs
- EntityContainerEntitySetDefiningQuery.cs
- WorkflowInstance.cs
- PeerDuplexChannelListener.cs
- WpfKnownMember.cs
- WebPartVerb.cs
- KnownBoxes.cs
- HitTestParameters.cs
- EnumMemberAttribute.cs
- ExceptionHelpers.cs
- MediaPlayer.cs
- safex509handles.cs
- RectAnimation.cs
- WebContext.cs
- CodeAssignStatement.cs
- WindowsRebar.cs
- NetTcpBinding.cs
- StylusEventArgs.cs
- LexicalChunk.cs
- TraceUtils.cs
- Converter.cs
- MultipleViewProviderWrapper.cs
- PixelFormatConverter.cs
- VisualStyleInformation.cs
- SystemFonts.cs
- AssemblyBuilder.cs
- TransformPattern.cs
- Error.cs
- NullableIntSumAggregationOperator.cs
- UnauthorizedAccessException.cs
- StatusBarPanel.cs
- FieldToken.cs
- HierarchicalDataBoundControl.cs