Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntityDesign / Design / System / Data / Entity / Design / AspNet / BuildProviderUtils.cs / 1 / 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.Hosting; using System.Web.Compilation; 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 = virtualPath.Replace("/", "."); if (name.StartsWith(".", StringComparison.Ordinal)) { name = name.Substring(1); } using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { int byteRead = input.ReadByte(); while (byteRead != -1) { resStream.WriteByte((byte)byteRead); byteRead = input.ReadByte(); } } } } } } // 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.Hosting; using System.Web.Compilation; 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 = virtualPath.Replace("/", "."); if (name.StartsWith(".", StringComparison.Ordinal)) { name = name.Substring(1); } using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { int byteRead = input.ReadByte(); while (byteRead != -1) { resStream.WriteByte((byte)byteRead); byteRead = input.ReadByte(); } } } } } } // 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
- DecoderReplacementFallback.cs
- EventSourceCreationData.cs
- SqlNotificationEventArgs.cs
- TemplateBaseAction.cs
- NativeMethods.cs
- XPathException.cs
- WindowsListBox.cs
- MapPathBasedVirtualPathProvider.cs
- AutoScrollHelper.cs
- WindowsMenu.cs
- SQLChars.cs
- UnderstoodHeaders.cs
- path.cs
- CodeSnippetStatement.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- Geometry3D.cs
- MatrixAnimationBase.cs
- NumberAction.cs
- COM2ExtendedBrowsingHandler.cs
- jithelpers.cs
- UIElement3D.cs
- IPAddressCollection.cs
- TreeView.cs
- TransformBlockRequest.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- _NtlmClient.cs
- StorageInfo.cs
- TextBoxRenderer.cs
- ColorContextHelper.cs
- VirtualPathExtension.cs
- Calendar.cs
- RecognizerStateChangedEventArgs.cs
- WebPartConnectionsCloseVerb.cs
- ConfigXmlText.cs
- RegexMatchCollection.cs
- CodeDirectionExpression.cs
- WebSysDescriptionAttribute.cs
- SqlServer2KCompatibilityCheck.cs
- safelinkcollection.cs
- OperationAbortedException.cs
- InkCanvasSelection.cs
- SafeEventHandle.cs
- MetadataArtifactLoaderFile.cs
- WebBrowserDocumentCompletedEventHandler.cs
- Vector3DIndependentAnimationStorage.cs
- XmlSerializationReader.cs
- ActionItem.cs
- RegexInterpreter.cs
- ZoneButton.cs
- StructureChangedEventArgs.cs
- WebPartManagerInternals.cs
- DecimalAnimationUsingKeyFrames.cs
- X509ThumbprintKeyIdentifierClause.cs
- FieldAccessException.cs
- DPTypeDescriptorContext.cs
- SchemaNamespaceManager.cs
- HtmlInputRadioButton.cs
- ContainerFilterService.cs
- IgnoreSection.cs
- MasterPage.cs
- RemotingSurrogateSelector.cs
- Attribute.cs
- SortableBindingList.cs
- LocationReferenceValue.cs
- WebPartTransformerCollection.cs
- RelationshipFixer.cs
- nulltextnavigator.cs
- ToolStrip.cs
- TypeSource.cs
- WindowsIdentity.cs
- SQLMoney.cs
- Token.cs
- CanExecuteRoutedEventArgs.cs
- ProcessThreadCollection.cs
- StringCollection.cs
- RadioButtonBaseAdapter.cs
- XamlTreeBuilderBamlRecordWriter.cs
- DynamicMethod.cs
- GlyphTypeface.cs
- KeyboardDevice.cs
- elementinformation.cs
- InheritedPropertyDescriptor.cs
- XmlSchemaDatatype.cs
- LocalizableResourceBuilder.cs
- ConnectionOrientedTransportChannelListener.cs
- UnsafeNetInfoNativeMethods.cs
- PrtCap_Reader.cs
- CultureInfoConverter.cs
- FormsAuthenticationConfiguration.cs
- MessageDecoder.cs
- PreloadHost.cs
- GatewayIPAddressInformationCollection.cs
- KeyValueConfigurationCollection.cs
- HttpResponseInternalWrapper.cs
- XmlSignatureManifest.cs
- WebBrowserUriTypeConverter.cs
- TypeDelegator.cs
- PeerApplicationLaunchInfo.cs
- Constants.cs
- Baml2006KnownTypes.cs