CreateManifestResourceName.CreateManifestName Method

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

When overridden in a derived class, creates the manifest resource name.

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:  Microsoft.Build.Tasks
Assembly:  Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)

Syntax

'Declaration
Protected MustOverride Function CreateManifestName ( _
    fileName As String, _
    linkFileName As String, _
    rootNamespaceName As String, _
    dependentUponFileName As String, _
    binaryStream As Stream _
) As String
protected abstract string CreateManifestName(
    string fileName,
    string linkFileName,
    string rootNamespaceName,
    string dependentUponFileName,
    Stream binaryStream
)
protected:
virtual String^ CreateManifestName(
    String^ fileName, 
    String^ linkFileName, 
    String^ rootNamespaceName, 
    String^ dependentUponFileName, 
    Stream^ binaryStream
) abstract
abstract CreateManifestName : 
        fileName:string * 
        linkFileName:string * 
        rootNamespaceName:string * 
        dependentUponFileName:string * 
        binaryStream:Stream -> string
protected abstract function CreateManifestName(
    fileName : String, 
    linkFileName : String, 
    rootNamespaceName : String, 
    dependentUponFileName : String, 
    binaryStream : Stream
) : String

Parameters

  • linkFileName
    Type: System.String

    The name of the file specified by the Link attribute.

  • rootNamespaceName
    Type: System.String

    The root namespace. This parameter may be a null reference (Nothing in Visual Basic).

  • dependentUponFileName
    Type: System.String

    The file name of the parent of this dependency. This parameter may be a null reference (Nothing).

  • binaryStream
    Type: System.IO.Stream

    The binary stream contents of the file. This parameter may be a null reference (Nothing).

Return Value

Type: System.String
The manifest resource name.

.NET Framework Security

See Also

Reference

CreateManifestResourceName Class

Microsoft.Build.Tasks Namespace