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
- TransformerConfigurationWizardBase.cs
- GeometryGroup.cs
- CompositionDesigner.cs
- XmlSchemaValidationException.cs
- UriSectionReader.cs
- Button.cs
- ShapingWorkspace.cs
- DataGrid.cs
- UserPersonalizationStateInfo.cs
- MonthChangedEventArgs.cs
- XmlParserContext.cs
- entityreference_tresulttype.cs
- XmlCompatibilityReader.cs
- GridViewColumnHeader.cs
- ScaleTransform.cs
- TreeNodeBindingCollection.cs
- SecurityKeyIdentifier.cs
- CheckBoxList.cs
- SmtpAuthenticationManager.cs
- HtmlInputImage.cs
- ContractMapping.cs
- LineServices.cs
- Expressions.cs
- OpacityConverter.cs
- GradientStop.cs
- ContentElement.cs
- PropertyChangedEventArgs.cs
- XmlCharCheckingReader.cs
- EnumConverter.cs
- MarkupProperty.cs
- CodeMemberField.cs
- BamlResourceSerializer.cs
- SpellCheck.cs
- FactoryGenerator.cs
- ClientTargetSection.cs
- UTF32Encoding.cs
- Speller.cs
- XmlQueryCardinality.cs
- Message.cs
- CompensationExtension.cs
- TextUtf8RawTextWriter.cs
- PaperSize.cs
- Context.cs
- IpcServerChannel.cs
- ScriptReference.cs
- TraceContextEventArgs.cs
- WebPartTransformerCollection.cs
- DataRecordInfo.cs
- PointF.cs
- ReadOnlyHierarchicalDataSource.cs
- EventHandlersStore.cs
- ListViewEditEventArgs.cs
- MatchingStyle.cs
- StackBuilderSink.cs
- DataGridViewColumnDesigner.cs
- OutputCacheProfileCollection.cs
- SelectionChangedEventArgs.cs
- DataControlCommands.cs
- PrintPreviewGraphics.cs
- WizardStepBase.cs
- IndexedString.cs
- ProbeMatchesCD1.cs
- DictionaryItemsCollection.cs
- EntitySqlQueryBuilder.cs
- ObjectTypeMapping.cs
- RedirectionProxy.cs
- SqlUserDefinedAggregateAttribute.cs
- CompiledQueryCacheEntry.cs
- DirectoryRootQuery.cs
- SerialErrors.cs
- Int32CAMarshaler.cs
- Int32KeyFrameCollection.cs
- DefaultBindingPropertyAttribute.cs
- DataColumnChangeEvent.cs
- ProtocolsSection.cs
- KeyInfo.cs
- DispatchChannelSink.cs
- BackoffTimeoutHelper.cs
- ZoneButton.cs
- BamlResourceDeserializer.cs
- SimpleTypeResolver.cs
- BuildProvidersCompiler.cs
- FileChangesMonitor.cs
- TimeSpan.cs
- SubMenuStyle.cs
- TypeConverterHelper.cs
- comcontractssection.cs
- XPathScanner.cs
- RequestCacheValidator.cs
- PrimitiveSchema.cs
- VoiceObjectToken.cs
- FixedDSBuilder.cs
- GenericsNotImplementedException.cs
- RoleManagerModule.cs
- InheritanceContextChangedEventManager.cs
- PtsPage.cs
- XmlCharacterData.cs
- OleDbEnumerator.cs
- StatusBarAutomationPeer.cs
- CachingParameterInspector.cs