Edit C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets
??<!-- *********************************************************************************************** Microsoft.Common.targets WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have created a backup copy. Incorrect changes to this file will make it impossible to load or build your projects from the command-line or the IDE. This file defines the steps in the standard build process for .NET projects. It contains all the steps that are common among the different .NET languages, such as Visual Basic, C#, and Visual J#. Copyright (C) Microsoft Corporation. All rights reserved. *********************************************************************************************** --> <Project DefaultTargets="Build" InitialTargets="_CheckForInvalidConfigurationAndPlatform" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- These tasks are specific to the build process defined in this file, and are not considered general-purpose build tasks. --> <UsingTask TaskName="AssignProjectConfiguration" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="AssignTargetPath" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="FormatUrl" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="FormatVersion" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="GenerateTrustInfo" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="ResolveManifestFiles" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="ResolveVCProjectOutput" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="ResolveNonMSBuildProjectOutput" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <UsingTask TaskName="UpdateManifest" AssemblyName="Microsoft.Build.Tasks, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <Import Project="$(MSBuildProjectFullPath).user" Condition="Exists('$(MSBuildProjectFullPath).user')"/> <PropertyGroup> <CustomBeforeMicrosoftCommonTargets Condition="'$(CustomBeforeMicrosoftCommonTargets)'==''">$(MSBuildExtensionsPath)\v2.0\Custom.Before.Microsoft.Common.targets</CustomBeforeMicrosoftCommonTargets> <CustomAfterMicrosoftCommonTargets Condition="'$(CustomAfterMicrosoftCommonTargets)'==''">$(MSBuildExtensionsPath)\v2.0\Custom.After.Microsoft.Common.targets</CustomAfterMicrosoftCommonTargets> <ReportingServicesTargets Condition="'$(ReportingServicesTargets)'==''">$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v8.0\ReportingServices\Microsoft.ReportingServices.targets</ReportingServicesTargets> </PropertyGroup> <Import Project="$(CustomBeforeMicrosoftCommonTargets)" Condition="Exists('$(CustomBeforeMicrosoftCommonTargets)')"/> <!-- Several properties must be set in the main project file, before using this .TARGETS file. However, if the properties are not set, we pick some defaults. --> <PropertyGroup> <!-- Ensure any OutputPath has a trailing slash, so it can be concatenated --> <OutputPath Condition="'$(OutputPath)' != '' and !HasTrailingSlash('$(OutputPath)')">$(OutputPath)\</OutputPath> <AssemblyName Condition=" '$(AssemblyName)'=='' ">$(MSBuildProjectName)</AssemblyName> <!-- Be careful not to give OutputPath a default value in the case of an invalid Configuration/Platform. We use OutputPath specifically to check for invalid configurations/platforms. --> <OutputPath Condition=" '$(Platform)'=='' and '$(Configuration)'=='' and '$(OutputPath)'=='' ">bin\Debug\</OutputPath> <_OriginalConfiguration>$(Configuration)</_OriginalConfiguration> <_OriginalPlatform>$(Platform)</_OriginalPlatform> <Configuration Condition=" '$(Configuration)'=='' ">Debug</Configuration> <ConfigurationName Condition=" '$(ConfigurationName)' == '' ">$(Configuration)</ConfigurationName> <!-- Example, Debug --> <Platform Condition=" '$(Platform)'=='' ">AnyCPU</Platform> <OutputType Condition=" '$(TargetType)' != ''">$(TargetType)</OutputType> <OutputType Condition=" '$(TargetType)' == 'Container' or '$(TargetType)' == 'DocumentContainer' ">library</OutputType> <OutputType Condition=" '$(OutputType)' == '' ">exe</OutputType> <DebugSymbols Condition=" '$(ConfigurationName)' == 'Debug' and '$(DebugSymbols)' == '' and '$(DebugType)'==''">true</DebugSymbols> <!-- Whether or not a .pdb file is produced. --> <_DebugSymbolsProduced>false</_DebugSymbolsProduced> <_DebugSymbolsProduced Condition="'$(DebugSymbols)'=='true'">true</_DebugSymbolsProduced> <_DebugSymbolsProduced Condition="'$(DebugType)'=='none'">false</_DebugSymbolsProduced> <_DebugSymbolsProduced Condition="'$(DebugType)'=='pdbonly'">true</_DebugSymbolsProduced> <_DebugSymbolsProduced Condition="'$(DebugType)'=='full'">true</_DebugSymbolsProduced> <!-- Whether or not a .xml file is produced. --> <_DocumentationFileProduced>true</_DocumentationFileProduced> <_DocumentationFileProduced Condition="'$(DocumentationFile)'==''">false</_DocumentationFileProduced> </PropertyGroup> <PropertyGroup Condition=" '$(OutputPath)' == '' "> <!-- A blank OutputPath at this point means that the user passed in an invalid Configuration/Platform combination. Whether this is considered an error or a warning depends on the value of $(SkipInvalidConfigurations). --> <_InvalidConfigurationError Condition=" '$(SkipInvalidConfigurations)' != 'true' ">true</_InvalidConfigurationError> <_InvalidConfigurationWarning Condition=" '$(SkipInvalidConfigurations)' == 'true' ">true</_InvalidConfigurationWarning> </PropertyGroup> <!-- IDE Macros available from both integrated builds and from command line builds. The following properties are 'macros' that are available via IDE for pre and post build steps. --> <PropertyGroup> <TargetExt Condition="'$(OutputType)'=='exe'">.exe</TargetExt> <TargetExt Condition="'$(OutputType)'=='winexe'">.exe</TargetExt> <TargetExt Condition="'$(OutputType)'=='library'">.dll</TargetExt> <TargetExt Condition="'$(OutputType)'=='module'">.netmodule</TargetExt> </PropertyGroup> <PropertyGroup> <OutDir Condition=" '$(OutDir)' == '' ">$(OutputPath)</OutDir> <!-- Example, bin\Debug\ --> <!-- Ensure OutDir has a trailing slash, so it can be concatenated --> <OutDir Condition="'$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')">$(OutDir)\</OutDir> <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> <!-- Example, MyProject --> <TargetName Condition=" '$(TargetName)' == '' ">$(AssemblyName)</TargetName> <!-- Example, MyAssembly --> <ProjectFileName Condition=" '$(ProjectFileName)' == '' ">$(MSBuildProjectFile)</ProjectFileName> <!-- Example, MyProject.csproj --> <ProjectExt Condition=" '$(ProjectExt)' == '' ">$(MSBuildProjectExtension)</ProjectExt> <!-- Example, .csproj --> <TargetFileName Condition=" '$(TargetFileName)' == '' ">$(TargetName)$(TargetExt)</TargetFileName> <!-- Example, MyAssembly.dll --> </PropertyGroup> <PropertyGroup> <!-- The PublishableProject property is used when invoking the publish target on a solution that contains multiple projects. The property determines which projects should be published, and which projects should be skipped in the publish target. By default any "Windows Application" or "Console Application" project type is publishable. However, a project that would otherwise be published can be skipped by defining the PublishableProject property in the project itself. --> <_DeploymentPublishableProjectDefault Condition="'$(OutputType)'=='winexe' or '$(OutputType)'=='exe'">true</_DeploymentPublishableProjectDefault> <PublishableProject Condition="'$(PublishableProject)'==''">$(_DeploymentPublishableProjectDefault)</PublishableProject> <_DeploymentTargetApplicationManifestFileName Condition="'$(OutputType)'=='library'">Native.$(AssemblyName).manifest</_DeploymentTargetApplicationManifestFileName> <!-- Example, Native.MyAssembly.manifest --> <_DeploymentTargetApplicationManifestFileName Condition="'$(OutputType)'=='winexe'">$(TargetFileName).manifest</_DeploymentTargetApplicationManifestFileName> <!-- Example, MyAssembly.exe.manifest --> <_DeploymentTargetApplicationManifestFileName Condition="'$(OutputType)'=='exe'">$(TargetFileName).manifest</_DeploymentTargetApplicationManifestFileName> <!-- Example, MyAssembly.exe.manifest --> <TargetDeployManifestFileName Condition="'$(TargetDeployManifestFileName)' == ''">$(AssemblyName).application</TargetDeployManifestFileName> <!-- Example, MyAssembly.application --> <GenerateClickOnceManifests Condition="'$(OutputType)'=='winexe' or '$(OutputType)'=='exe'">$(GenerateManifests)</GenerateClickOnceManifests> <_DeploymentApplicationManifestIdentity Condition="'$(OutputType)'=='library'">Native.$(AssemblyName)</_DeploymentApplicationManifestIdentity> <_DeploymentApplicationManifestIdentity Condition="'$(OutputType)'=='winexe'">$(AssemblyName).exe</_DeploymentApplicationManifestIdentity> <_DeploymentApplicationManifestIdentity Condition="'$(OutputType)'=='exe'">$(AssemblyName).exe</_DeploymentApplicationManifestIdentity> <_DeploymentDeployManifestIdentity>$(AssemblyName).application</_DeploymentDeployManifestIdentity> <_DeploymentFileMappingExtension Condition="'$(MapFileExtensions)'=='true'">.deploy</_DeploymentFileMappingExtension> <_DeploymentFileMappingExtension Condition="'$(MapFileExtensions)'!='true'"></_DeploymentFileMappingExtension> <_DeploymentBuiltUpdateInterval Condition="'$(UpdatePeriodically)'=='true'">$(UpdateInterval)</_DeploymentBuiltUpdateInterval> <_DeploymentBuiltUpdateIntervalUnits Condition="'$(UpdatePeriodically)'=='true'">$(UpdateIntervalUnits)</_DeploymentBuiltUpdateIntervalUnits> <_DeploymentBuiltUpdateInterval Condition="'$(UpdatePeriodically)'!='true'">0</_DeploymentBuiltUpdateInterval> <_DeploymentBuiltUpdateIntervalUnits Condition="'$(UpdatePeriodically)'!='true'">Days</_DeploymentBuiltUpdateIntervalUnits> <_DeploymentBuiltMinimumRequiredVersion Condition="'$(UpdateRequired)'=='true'">$(MinimumRequiredVersion)</_DeploymentBuiltMinimumRequiredVersion> <MaxTargetPath Condition="'$(MaxTargetPath)'==''">100</MaxTargetPath> </PropertyGroup> <ItemGroup> <!-- Create the output path as an item so that we can use %(FullPath) on it. --> <_OutputPathItem Include="$(OutDir)"/> <_IntermediateOutputPathItem Include="$(IntermediateOutputPath)"/> <_UnmanagedRegistrationCache Include="$(BaseIntermediateOutputPath)$(MSBuildProjectFile).UnmanagedRegistration.cache"/> <_ResolveComReferenceCache Include="$(IntermediateOutputPath)$(MSBuildProjectFile).ResolveComReference.cache"/> </ItemGroup> <PropertyGroup> <!-- Example, c:\MyProjects\MyProject\bin\debug\ --> <!-- Condition intentionally omitted on this one, because it causes problems when we pick up the value of an environment variable named TargetDir --> <TargetDir>@(_OutputPathItem->'%(FullPath)')</TargetDir> <!-- Example, c:\MyProjects\MyProject\bin\debug\MyAssembly.dll --> <TargetPath Condition=" '$(TargetPath)' == '' ">@(_OutputPathItem->'%(FullPath)$(TargetFileName)')</TargetPath> <!-- Example, c:\MyProjects\MyProject\ --> <ProjectDir Condition=" '$(ProjectDir)' == '' ">$(MSBuildProjectDirectory)\</ProjectDir> <!-- Example, c:\MyProjects\MyProject\MyProject.csproj --> <ProjectPath Condition=" '$(ProjectPath)' == '' ">$(ProjectDir)$(ProjectFileName)</ProjectPath> <!-- Example, AnyCPU --> <PlatformName Condition=" '$(PlatformName)' == '' ">$(Platform)</PlatformName> </PropertyGroup> <ItemGroup> <AppConfigFileDestination Include="$(OutDir)$(TargetFileName).config"/> </ItemGroup> <PropertyGroup> <LoadTimeSensitiveTargets> $(LoadTimeSensitiveTargets); Compile; ResolveReferences; BeforeResolveReferences; SplitProjectReferencesByType; ResolveProjectReferences; ResolveVCProjectReferences; ResolveNativeReferences; GetRedistLists; ResolveAssemblyReferences; GetFrameworkPaths; PrepareForBuild; ResolveComReferences; ResolveKeySource; AfterResolveReferences; BeforeCompile; CoreCompile; AfterCompile; AllProjectOutputGroupsDependencies; BuildOnlySettings; AssignTargetPaths; BuiltProjectOutputGroupDependencies; DebugSymbolsProjectOutputGroupDependencies; SatelliteDllsProjectOutputGroupDependencies; DocumentationProjectOutputGroupDependencies; SGenFilesOutputGroupDependencies; AllProjectOutputGroups; BuiltProjectOutputGroup; DebugSymbolsProjectOutputGroup; DocumentationProjectOutputGroup; SatelliteDllsProjectOutputGroup; PrepareResourceNames; SplitResourcesByCulture; CreateManifestResourceNames; SourceFilesProjectOutputGroup; ContentFilesProjectOutputGroup; SGenFilesOutputGroup; CopyRunEnvironmentFiles; GetTargetPath; </LoadTimeSensitiveTargets> <LoadTimeSensitiveProperties> $(LoadTimeSensitiveProperties); MSBuildProjectFullPath; CustomBeforeMicrosoftCommonTargets; MSBuildExtensionsPath; CodeAnalysisTargets; ReportingServicesTargets; CustomAfterMicrosoftCommonTargets; CompileDependsOn; ResolveReferencesDependsOn; ResolveAssemblyReferencesDependsOn; GetRedistListsDependsOn; GetFrameworkPathsDependsOn; PrepareForBuildDependsOn; CoreCompileDependsOn; PrepareResourceNamesDependsOn; CreateManifestResourceNamesDependsOn; BuildingProject; BuildingInsideVisualStudio; ResolveAssemblyReferencesStateFile; CleanFile; MSBuildProjectFile; BaseIntermediateOutputPath; BuiltProjectOutputGroupDependsOn; DebugSymbolsProjectOutputGroupDependsOn; DocumentationProjectOutputGroupDependsOn; SatelliteDllsProjectOutputGroupDependsOn; PrepareResourceNamesDependsOn; CreateManifestResourceNamesDependsOn; SourceFilesProjectOutputGroupDependsOn; ContentFilesProjectOutputGroupDependsOn; SGenFilesOutputGroupDependsOn; </LoadTimeSensitiveProperties> <LoadTimeSensitiveItems> $(LoadTimeSensitiveItems); AppConfigWithTargetPath; AppConfigFileDestination; </LoadTimeSensitiveItems> <LoadTimeCheckItemLocation> $(LoadTimeCheckItemLocation); AppConfigFileDestination; </LoadTimeCheckItemLocation> </PropertyGroup> <!-- IDE Macros available only from integrated builds. The following properties are 'macros' that are available via IDE for pre and post build steps. However, they are not defined when directly building a project from the command line, only when building a solution. --> <PropertyGroup> <DevEnvDir Condition="'$(DevEnvDir)'==''">*Undefined*</DevEnvDir> <SolutionName Condition="'$(SolutionName)'==''">*Undefined*</SolutionName> <!-- Example, MySolution --> <SolutionFileName Condition="'$(SolutionFileName)'==''">*Undefined*</SolutionFileName> <!-- Example, MySolution.sln --> <SolutionPath Condition="'$(SolutionPath)'==''">*Undefined*</SolutionPath> <!-- Example, f:\MySolutions\MySolution\MySolution.sln --> <SolutionDir Condition="'$(SolutionDir)'==''">*Undefined*</SolutionDir> <!-- Example, f:\MySolutions\MySolution\ --> <SolutionExt Condition="'$(SolutionExt)'==''">*Undefined*</SolutionExt> <!-- Example, .sln --> </PropertyGroup> <!-- The following properties and items are used internally by this targets file. --> <PropertyGroup> <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences> <AutoUnifyAssemblyReferences Condition="'$(OutputType)'=='exe'">false</AutoUnifyAssemblyReferences> <AutoUnifyAssemblyReferences Condition="'$(OutputType)'=='winexe'">false</AutoUnifyAssemblyReferences> <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'==''">obj\</BaseIntermediateOutputPath> <CleanFile Condition="'$(CleanFile)'==''">$(MSBuildProjectFile).FileListAbsolute.txt</CleanFile> </PropertyGroup> <PropertyGroup Condition=" $(IntermediateOutputPath) == '' "> <IntermediateOutputPath Condition=" '$(PlatformName)' == 'AnyCPU' ">$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath> <IntermediateOutputPath Condition=" '$(PlatformName)' != 'AnyCPU' ">$(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\</IntermediateOutputPath> </PropertyGroup> <ItemGroup> <IntermediateAssembly Include="$(IntermediateOutputPath)$(TargetName)$(TargetExt)"/> <FinalDocFile Include="@(DocFileItem->'$(OutDir)%(Filename)%(Extension)')"/> </ItemGroup> <ItemGroup> <!-- Create an item for entry point of the ClickOnce application (Example: WindowsApplication1.exe) --> <_DeploymentManifestEntryPoint Include="@(IntermediateAssembly)"> <TargetPath>$(TargetFileName)</TargetPath> </_DeploymentManifestEntryPoint> <!-- Create an item for the application icon if one exists in the project (Example: app.ico) --> <_DeploymentManifestIconFile Include="$(ApplicationIcon)" Condition="Exists('$(ApplicationIcon)')"> <TargetPath>$(ApplicationIcon)</TargetPath> </_DeploymentManifestIconFile> <!-- Create an item for the output application manifest (Example: WindowsApplication1.exe.manifeset) --> <ApplicationManifest Include="$(IntermediateOutputPath)$(_DeploymentTargetApplicationManifestFileName)"> <TargetPath>$(_DeploymentTargetApplicationManifestFileName)</TargetPath> </ApplicationManifest> <!-- Create an item for the final application manifest (Example: WindowsApplication1.exe.manifeset) This item represents the final output application manifest used for project-to-project references and for copying to the publish output location. --> <_ApplicationManifestFinal Include="$(OutDir)$(_DeploymentTargetApplicationManifestFileName)"> <TargetPath>$(_DeploymentTargetApplicationManifestFileName)</TargetPath> </_ApplicationManifestFinal> <!-- Create an item for the output deploy manifest (Example: WindowsApplication1.application) --> <DeployManifest Include="$(IntermediateOutputPath)$(TargetDeployManifestFileName)"> <TargetPath>$(TargetDeployManifestFileName)</TargetPath> </DeployManifest> <!-- Create an item for the intermediate trust info file --> <_DeploymentIntermediateTrustInfoFile Include="$(IntermediateOutputPath)$(TargetName).TrustInfo.xml" Condition="'$(TargetZone)'!=''"/> </ItemGroup> <!-- Determine the <deploymentProvider> (_DeploymentUrl) for the ClickOnce deployment manifest. Prefer the UpdateUrl, falling back to InstallUrl or PublishUrl if not specified. If the UpdateUrl is specified then _DeploymentUrl is always set to the UpdateUrl. Otherwise, only set the _DeploymentUrl if it's an installed app and updates are enabled. --> <PropertyGroup> <_DeploymentUrl Condition="'$(_DeploymentUrl)'==''">$(UpdateUrl)</_DeploymentUrl> <_DeploymentUrl Condition="'$(_DeploymentUrl)'==''">$(InstallUrl)</_DeploymentUrl> <_DeploymentUrl Condition="'$(_DeploymentUrl)'==''">$(PublishUrl)</_DeploymentUrl> <_DeploymentUrl Condition="'$(_DeploymentUrl)'!=''">$(_DeploymentUrl)$(TargetDeployManifestFileName)</_DeploymentUrl> <!-- Need to explicitly blank out the _DeploymentUrl when it's not used. Otherwise an inappropriate value may be used. For example a local path from the PublishUrl is something we never want to see in the manifest because it means you could only install the app from that machine. --> <_DeploymentUrl Condition="'$(UpdateUrl)'=='' and !('$(Install)'=='true' and '$(UpdateEnabled)'=='true')"></_DeploymentUrl> </PropertyGroup> <!-- Determine the URLs for the bootstrapper. --> <PropertyGroup> <_DeploymentApplicationUrl Condition="'$(IsWebBootstrapper)'=='true'">$(InstallUrl)</_DeploymentApplicationUrl> <_DeploymentApplicationUrl Condition="'$(IsWebBootstrapper)'=='true' and '$(InstallUrl)'==''">$(PublishUrl)</_DeploymentApplicationUrl> <_DeploymentComponentsUrl Condition="'$(BootstrapperComponentsLocation)'=='Absolute'">$(BootstrapperComponentsUrl)</_DeploymentComponentsUrl> </PropertyGroup> <!-- Output location for publish target. --> <PropertyGroup> <PublishDir Condition="'$(PublishDir)' != '' and !HasTrailingSlash('$(PublishDir)')">$(PublishDir)\</PublishDir> <PublishDir Condition="'$(PublishDir)'==''">$(OutputPath)$(AssemblyName).publish\</PublishDir> </PropertyGroup> <!-- ProcessorArchitecture is the target processor architecture. --> <PropertyGroup Condition="'$(ProcessorArchitecture)'==''"> <!-- If ProcessorArchitecture is not set, set it to PlatformTarget Note: if $(PlatformTarget) is also blank resolve assembly reference defaults to msil which is the desired behavior in this case --> <ProcessorArchitecture>$(PlatformTarget)</ProcessorArchitecture> <!-- If Processor architecture is not set and PlatformTarget is a known target translate the PlatformTarget into something ResolveAssemblyReference knows about --> <ProcessorArchitecture Condition=" '$(PlatformTarget)' == 'AnyCpu' ">msil</ProcessorArchitecture> <ProcessorArchitecture Condition=" '$(PlatformTarget)' == 'x64' ">amd64</ProcessorArchitecture> <ProcessorArchitecture Condition=" '$(PlatformTarget)' == 'Itanium' ">ia64</ProcessorArchitecture> <ProcessorArchitecture Condition=" '$(PlatformTarget)' == 'x86' ">x86</ProcessorArchitecture> </PropertyGroup> <!-- AvailablePlatforms is the list of platform targets available. --> <PropertyGroup> <AvailablePlatforms>Any CPU,x86,x64,Itanium</AvailablePlatforms> </PropertyGroup> <!-- Flavor is the project flavor. For example, Client, Smart Devices, SQL Server, etc. --> <PropertyGroup> <ProjectFlavor Condition="'$(ProjectFlavor)'==''">Client</ProjectFlavor> </PropertyGroup> <!-- The default for compilers is to not delay-sign. If $(DelaySign) is false, let the compiler use its default rather than forcing a no-delay-sign flag to be passed in. This is so that attributes in the source code can override this decision. --> <PropertyGroup> <DelaySign Condition="'$(SignAssembly)' != 'true'">false</DelaySign> <DelaySign Condition="'$(DelaySign)'!='true'"></DelaySign> </PropertyGroup> <!-- These properties control web reference proxy generation. --> <PropertyGroup> <WebReference_EnableProperties Condition=" '$(WebReference_EnableProperties)' == '' ">true</WebReference_EnableProperties> <WebReference_EnableSQLTypes Condition=" '$(WebReference_EnableSQLTypes)' == '' ">true</WebReference_EnableSQLTypes> <WebReference_EnableLegacyEventingModel Condition=" '$(WebReference_EnableLegacyEventingModel)' == '' ">false</WebReference_EnableLegacyEventingModel> </PropertyGroup> <PropertyGroup> <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildProjectFullPath);$(MSBuildBinPath)\Microsoft.Common.targets</MSBuildAllProjects> <MSBuildAllProjects Condition="Exists('$(MSBuildProjectFullPath).user')">$(MSBuildAllProjects);$(MSBuildProjectFullPath).user</MSBuildAllProjects> </PropertyGroup> <!-- These parameters control where to look in the registry for directories to search for assemblies in the assembly resolution tasks. --> <PropertyGroup> <FrameworkRegistryBase Condition=" '$(FrameworkRegistryBase)' == '' ">Software\Microsoft\.NetFramework</FrameworkRegistryBase> <TargetFrameworkVersion Condition=" '$(TargetFrameworkVersion)' == '' ">v2.0</TargetFrameworkVersion> <AssemblyFoldersSuffix Condition=" '$(AssemblyFoldersSuffix)' == '' ">AssemblyFoldersEx</AssemblyFoldersSuffix> </PropertyGroup> <PropertyGroup> <!-- The SearchPaths property is set to find assemblies in the following order: (1) Files from current project - indicated by {CandidateAssemblyFiles} (2) $(ReferencePath) - the reference path property, which comes from the .USER file. (3) The hintpath from the referenced item itself, indicated by {HintPathFromItem}. (4) The directory of MSBuild's "target" runtime from GetFrameworkPath. The "target" runtime folder is the folder of the runtime that MSBuild is a part of. (5) Registered assembly folders, indicated by {Registry:*,*,*} (6) Legacy registered assembly folders, indicated by {AssemblyFolders} (7) Look in the application's output folder (like bin\debug) (8) Resolve to the GAC. (9) Treat the reference's Include as if it were a real file name. --> <AssemblySearchPaths Condition=" '$(AssemblySearchPaths)' == '' "> {CandidateAssemblyFiles}; $(ReferencePath); {HintPathFromItem}; {TargetFrameworkDirectory}; {Registry:$(FrameworkRegistryBase),$(TargetFrameworkVersion),$(AssemblyFoldersSuffix)$(AssemblyFoldersExConditions)}; {AssemblyFolders}; {GAC}; {RawFileName}; $(OutputPath) </AssemblySearchPaths> <!-- These are the extensions that assembly reference resolution will consider for resolution. Add new extensions here if you want to add new file types to consider (for example, .metadata_dll) --> <AllowedReferenceAssemblyFileExtensions Condition=" '$(AllowedReferenceAssemblyFileExtensions)' == '' "> .exe; .dll </AllowedReferenceAssemblyFileExtensions> <!-- These are the extensions that reference resolution will consider when looking for files related to resolved references. Add new extensions here if you want to add new file types to consider. --> <AllowedReferenceRelatedFileExtensions Condition=" '$(AllowedReferenceRelatedFileExtensions)' == '' "> .pdb; .xml </AllowedReferenceRelatedFileExtensions> </PropertyGroup> <!-- *********************************************************************************************** *********************************************************************************************** Build Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ _CheckForInvalidConfigurationAndPlatform This target checks for errors in statically defined properties. It always gets executed before any other target. ============================================================ --> <Target Name="_CheckForInvalidConfigurationAndPlatform"> <Error Condition=" '$(_InvalidConfigurationError)' == 'true' " Text="The OutputPath property is not set for this project. Please check to make sure that you have specified a valid Configuration/Platform combination. Configuration='$(_OriginalConfiguration)' Platform='$(_OriginalPlatform)'"/> <Warning Condition=" '$(_InvalidConfigurationWarning)' == 'true' " Text="The OutputPath property is not set for this project. Please check to make sure that you have specified a valid Configuration/Platform combination. Configuration='$(_OriginalConfiguration)' Platform='$(_OriginalPlatform)'"/> <Message Text="Configuration=$(Configuration)" Importance="Low" /> <Message Text="Platform=$(Platform)" Importance="Low" /> <!-- Although we try to ensure a trailing slash, it's possible to circumvent this if the property is set on the command line --> <Error Condition="'$(OutDir)' != '' and !HasTrailingSlash('$(OutDir)')" Text="The OutDir property must end with a trailing slash." /> </Target> <!-- ============================================================ Build The main build entry point. ============================================================ --> <PropertyGroup> <BuildDependsOn> BeforeBuild; CoreBuild; AfterBuild </BuildDependsOn> </PropertyGroup> <Target Name="Build" Condition=" '$(_InvalidConfigurationWarning)' != 'true' " DependsOnTargets="$(BuildDependsOn)" Outputs="$(TargetPath)"/> <!-- ============================================================ BeforeBuild Redefine this target in your project in order to run tasks just before Build ============================================================ --> <Target Name="BeforeBuild"/> <!-- ============================================================ AfterBuild Redefine this target in your project in order to run tasks just after Build ============================================================ --> <Target Name="AfterBuild"/> <!-- ============================================================ CoreBuild The core build step calls each of the build targets. ============================================================ --> <PropertyGroup> <CoreBuildDependsOn> BuildOnlySettings; PrepareForBuild; PreBuildEvent; UnmanagedUnregistration; ResolveReferences; PrepareResources; ResolveKeySource; Compile; GenerateSerializationAssemblies; CreateSatelliteAssemblies; GenerateManifests; GetTargetPath; PrepareForRun; UnmanagedRegistration; IncrementalClean; PostBuildEvent </CoreBuildDependsOn> </PropertyGroup> <Target Name="CoreBuild" DependsOnTargets="$(CoreBuildDependsOn)"> <OnError ExecuteTargets="_TimeStampAfterCompile;PostBuildEvent" Condition="'$(RunPostBuildEvent)'=='Always' or '$(RunPostBuildEvent)'=='OnOutputUpdated'"/> <OnError ExecuteTargets="_CleanRecordFileWrites"/> </Target> <!-- ============================================================ Rebuild Delete all intermediate and final build outputs, and then build the project from scratch. ============================================================ --> <PropertyGroup> <RebuildDependsOn> BeforeRebuild; Clean; $(MSBuildProjectDefaultTargets); AfterRebuild; </RebuildDependsOn> <RebuildDependsOn Condition=" '$(MSBuildProjectDefaultTargets)' == 'Rebuild' " > BeforeRebuild; Clean; Build; AfterRebuild; </RebuildDependsOn> </PropertyGroup> <Target Name="Rebuild" Condition=" '$(_InvalidConfigurationWarning)' != 'true' " DependsOnTargets="$(RebuildDependsOn)" Outputs="$(TargetPath)"/> <!-- ============================================================ BeforeRebuild Redefine this target in your project in order to run tasks just before Rebuild ============================================================ --> <Target Name="BeforeRebuild"/> <!-- ============================================================ AfterRebuild Redefine this target in your project in order to run tasks just after Rebuild ============================================================ --> <Target Name="AfterRebuild"/> <!-- ============================================================ CopyRunEnvironmentFiles Copy environment files necessary to run the user's app to the final directory. This is a public target that can be invoked by an IDE. This may be used by an IDE to make the app.config file available for running the target app. ============================================================ --> <Target Name="CopyRunEnvironmentFiles" DependsOnTargets="PrepareForBuild;_CopyAppConfigFile;_CleanRecordFileWrites"/> <!-- ============================================================ Run Run the final build output if it is a .EXE ============================================================ --> <PropertyGroup> <RunDependsOn></RunDependsOn> </PropertyGroup> <Target Name="Run" DependsOnTargets="$(RunDependsOn)"> <Error Text="Cannot run '$(TargetPath)' because project output type is not '.exe'" Condition="'$(TargetExt)'!='.exe'"/> <Exec Command="$(TargetPath) $(StartArguments)" WorkingDirectory="$(OutDir)" Condition=" '$(StartWorkingDirectory)' == '' "/> <Exec Command="$(TargetPath) $(StartArguments)" WorkingDirectory="$(StartWorkingDirectory)" Condition=" '$(StartWorkingDirectory)' != '' "/> </Target> <!-- *********************************************************************************************** *********************************************************************************************** BuildOnlySettings Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ BuildOnlySettings This target is called only when doing a real build. It is specifically not called during project load. ============================================================ --> <PropertyGroup> <BuildingProject>false</BuildingProject> </PropertyGroup> <Target Name="BuildOnlySettings"> <CreateProperty Value="true"> <Output TaskParameter="Value" PropertyName="BuildingProject" /> </CreateProperty> </Target> <!-- *********************************************************************************************** *********************************************************************************************** PrepareForBuild Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ PrepareForBuild Prepare the prerequisites for building. ============================================================ --> <PropertyGroup> <PrepareForBuildDependsOn>GetFrameworkPaths</PrepareForBuildDependsOn> </PropertyGroup> <Target Name="PrepareForBuild" DependsOnTargets="$(PrepareForBuildDependsOn)"> <!-- These CreateProperty calls are required because TargetDir and TargetPath are defined to contain an item list. We want that item list to be expanded so that it can be used as a regular property value and not as an item-list-with-transform. --> <CreateProperty Value="$(TargetDir)"> <Output TaskParameter="Value" PropertyName="TargetDir" /> </CreateProperty> <CreateProperty Value="$(TargetPath)"> <Output TaskParameter="Value" PropertyName="TargetPath" /> </CreateProperty> <!-- Choose exactly one app.config to be the main app.config that is copied to the destination folder. The search order is: (1) Choose the value $(AppConfig) set in the main project. (2) Choose @(None) App.Config in the same folder as the project. (3) Choose @(Content) App.Config in the same folder as the project. (4) Choose @(None) App.Config in any subfolder in the project. (5) Choose @(Content) App.Config in any subfolder in the project. If an app.config is not found in one of these locations then there is no app.config for this project. --> <CreateProperty Value="%(None.Identity)" Condition="'$(AppConfig)'=='' and '%(RelativeDir)%(Filename)%(Extension)'=='App.Config'"> <Output TaskParameter="Value" PropertyName="AppConfig" /> </CreateProperty> <CreateProperty Value="%(Content.Identity)" Condition="'$(AppConfig)'=='' and '%(RelativeDir)%(Filename)%(Extension)'=='App.Config'"> <Output TaskParameter="Value" PropertyName="AppConfig" /> </CreateProperty> <CreateProperty Value="%(None.Identity)" Condition="'$(AppConfig)'=='' and '%(Filename)%(Extension)'=='App.Config'"> <Output TaskParameter="Value" PropertyName="AppConfig" /> </CreateProperty> <CreateProperty Value="%(Content.Identity)" Condition="'$(AppConfig)'=='' and '%(Filename)%(Extension)'=='App.Config'"> <Output TaskParameter="Value" PropertyName="AppConfig" /> </CreateProperty> <!-- Dump the single app.config into an item list with TargetPath set. --> <CreateItem Include="$(AppConfig)" AdditionalMetadata="TargetPath=$(TargetFileName).config"> <Output TaskParameter="Include" ItemName="AppConfigWithTargetPath"/> </CreateItem> <!-- Create the directories for intermediate and final build products. --> <MakeDir Directories="$(OutDir);$(IntermediateOutputPath);@(DocFileItem->'%(RelativeDir)')"/> </Target> <!-- ============================================================ GetFrameworkPaths Get the paths for the .NET Framework installation directory, and the .NET Framework SDK installation directory. These paths are not used directly by this .targets file but are available for pre and post build steps. ============================================================ --> <PropertyGroup> <FrameworkDir>@(_TargetFrameworkDirectoryItem)</FrameworkDir> <FrameworkSDKDir>@(_TargetFrameworkSDKDirectoryItem)</FrameworkSDKDir> <GetFrameworkPathsDependsOn></GetFrameworkPathsDependsOn> </PropertyGroup> <Target Name="GetFrameworkPaths" DependsOnTargets="$(GetFrameworkPathsDependsOn)"> <!-- Get the path to the target .NET framework directory. --> <GetFrameworkPath> <Output TaskParameter="Path" PropertyName="TargetFrameworkDirectory"/> <Output TaskParameter="Path" ItemName="_TargetFrameworkDirectoryItem"/> </GetFrameworkPath> <!-- Get the path to the target .NET framework SDK directory. --> <GetFrameworkSDKPath> <Output TaskParameter="Path" PropertyName="TargetFrameworkSDKDirectory"/> <Output TaskParameter="Path" ItemName="_TargetFrameworkSDKDirectoryItem"/> </GetFrameworkSDKPath> </Target> <!-- *********************************************************************************************** *********************************************************************************************** PreBuildEvent Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ PreBuildEvent Run the pre-build event if there is one. ============================================================ --> <PropertyGroup> <PreBuildEventDependsOn></PreBuildEventDependsOn> </PropertyGroup> <Target Name="PreBuildEvent" Condition="'$(PreBuildEvent)'!=''" DependsOnTargets="$(PreBuildEventDependsOn)"> <Exec WorkingDirectory="$(OutDir)" Command="$(PreBuildEvent)" /> </Target> <!-- *********************************************************************************************** *********************************************************************************************** UnmanagedUnregistration Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ UnmanagedUnregistration If the main assembly had previously been registered for COM interop, unregister it now. We will re-register the new version after it has been built. ============================================================ --> <PropertyGroup> <UnmanagedUnregistrationDependsOn></UnmanagedUnregistrationDependsOn> </PropertyGroup> <Target Name="UnmanagedUnregistration" Condition="Exists('@(_UnmanagedRegistrationCache)')" DependsOnTargets="$(UnmanagedUnregistrationDependsOn)"> <UnregisterAssembly AssemblyListFile="@(_UnmanagedRegistrationCache)"/> </Target> <!-- *********************************************************************************************** *********************************************************************************************** ResolveReferences Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ ResolveReferences ============================================================ --> <PropertyGroup> <ResolveReferencesDependsOn> BeforeResolveReferences; SplitProjectReferencesByType; ResolveProjectReferences; ResolveVCProjectReferences; ResolveNativeReferences; ResolveAssemblyReferences; ResolveComReferences; AfterResolveReferences </ResolveReferencesDependsOn> </PropertyGroup> <Target Name="ResolveReferences" DependsOnTargets="$(ResolveReferencesDependsOn)"/> <!-- ============================================================ BeforeResolveReferences Redefine this target in your project in order to run tasks just before ResolveReferences ============================================================ --> <Target Name="BeforeResolveReferences"/> <!-- ============================================================ AfterResolveReferences Redefine this target in your project in order to run tasks just after ResolveReferences ============================================================ --> <Target Name="AfterResolveReferences"/> <!-- ============================================================ SplitProjectReferencesByType Split project references into two lists: VC project references and all others (handled by the MSBuild engine) [IN] @(ProjectReference) - the list of all project references [OUT] @(VCProjectReference) - the list of VC (managed VC++ to be exact) project references @(NonVCProjectReference) - the list of non-VC project references (MSBuild and potentially VSIP projects) ============================================================ --> <Target Name="SplitProjectReferencesByType" Condition="'@(ProjectReference)'!=''"> <!-- Assign a project configuration to each project reference if we're building a solution file. --> <AssignProjectConfiguration ProjectReferences="@(ProjectReference)" SolutionConfigurationContents="$(CurrentSolutionConfigurationContents)" Condition="'$(BuildingSolutionFile)'=='true'"> <Output TaskParameter="AssignedProjects" ItemName="_ProjectReferenceWithConfiguration"/> </AssignProjectConfiguration> <!-- Otherwise (regular command line build or building inside the IDE) just copy the references as we don't need their configurations --> <CreateItem Include="@(ProjectReference)" Condition="'$(BuildingSolutionFile)'!='true'"> <Output TaskParameter="Include" ItemName="_ProjectReferenceWithConfiguration"/> </CreateItem> <!-- Copy all VC project references to the VCProjectReference item list (using the VC project extension) --> <CreateItem Include="@(_ProjectReferenceWithConfiguration)" Condition="'%(Extension)'=='.vcproj'"> <Output TaskParameter="Include" ItemName="VCProjectReference"/> </CreateItem> <!-- Copy the rest of the project references to the NonVCProjectReference item list --> <CreateItem Include="@(_ProjectReferenceWithConfiguration)" Condition="'%(Extension)'!='.vcproj'"> <Output TaskParameter="Include" ItemName="NonVCProjectReference"/> </CreateItem> </Target> <!-- ============================================================ _SplitProjectReferencesByFileExistence Split referenced projects into two lists: those that exist on disk and those that don't. ============================================================ --> <Target Name="_SplitProjectReferencesByFileExistence" Condition="'@(NonVCProjectReference)'!=''" DependsOnTargets="SplitProjectReferencesByType"> <!-- Use this task for matching projects with pre-resolved project outputs set by the IDE if building inside the IDE. The IDE only includes non-MSBuild projects in the output list. We'll use MSBuild to resolve MSBuild projects. This task will resolve VSIP (3rd party) project references and create a new item list with only project references to projects in the MSBuild format. --> <ResolveNonMSBuildProjectOutput ProjectReferences="@(NonVCProjectReference)" PreresolvedProjectOutputs="$(VSIDEResolvedNonMSBuildProjectOutputs)" Condition="'$(BuildingInsideVisualStudio)'=='true'"> <Output TaskParameter="ResolvedOutputPaths" ItemName="_ResolvedProjectReferencePaths"/> <Output TaskParameter="UnresolvedProjectReferences" ItemName="_MSBuildProjectReference"/> </ResolveNonMSBuildProjectOutput> <!-- If building from the command line, simply copy the NonVCProjectReference item list to _MSBuildProjectReference, since we have to assume all non-VC projects are in the MSBuild format. We have no way of building VSIP (3rd party) projects from the command line. --> <CreateItem Include="@(NonVCProjectReference)" Condition="'$(BuildingInsideVisualStudio)'!='true'"> <Output TaskParameter="Include" ItemName="_MSBuildProjectReference"/> </CreateItem> <!-- Break the project list into two lists: those that exist on disk and those that don't. --> <CreateItem Include="@(_MSBuildProjectReference)" Condition="Exists('%(Identity)')"> <Output TaskParameter="Include" ItemName="_MSBuildProjectReferenceExistent"/> </CreateItem> <CreateItem Include="@(_MSBuildProjectReference)" Condition="!Exists('%(Identity)')"> <Output TaskParameter="Include" ItemName="_MSBuildProjectReferenceNonexistent"/> </CreateItem> </Target> <!-- ============================================================ ResolveProjectReferences Build referenced projects: [IN] @(NonVCProjectReference) - The list of non-VC project references. [OUT] @(_ResolvedProjectReferencePaths) - Paths to referenced projects. ============================================================ --> <Target Name="ResolveProjectReferences" Condition="'@(NonVCProjectReference)'!=''" DependsOnTargets="_SplitProjectReferencesByFileExistence"> <!-- When building this project from the IDE or when building a .SLN from the command-line, just gather the referenced build outputs. The code that builds the .SLN will already have built the project, so there's no need to do it again here. The ContinueOnError setting is here so that, during project load, as much information as possible will be passed to the compilers. --> <MSBuild Projects="@(_MSBuildProjectReferenceExistent)" Targets="GetTargetPath" Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)" Condition="('$(BuildingSolutionFile)'=='true' or '$(BuildingInsideVisualStudio)'=='true') and '@(_MSBuildProjectReferenceExistent)'!=''" ContinueOnError="!$(BuildingProject)"> <Output TaskParameter="TargetOutputs" ItemName="_ResolvedProjectReferencePaths"/> </MSBuild> <!-- Build referenced projects when building from the command line. The $(ProjectReferenceBuildTargets) will normally be blank so that the project's default target is used during a P2P reference. However if a custom build process requires that the referenced project has a different target to build it can be specified. --> <MSBuild Projects="@(_MSBuildProjectReferenceExistent)" Targets="$(ProjectReferenceBuildTargets)" Condition="'$(BuildingInsideVisualStudio)'!='true' and '$(BuildingSolutionFile)'!='true' and '@(_MSBuildProjectReferenceExistent)'!=''"> <Output TaskParameter="TargetOutputs" ItemName="_ResolvedProjectReferencePaths"/> </MSBuild> <!-- Get manifest items from the built project references (to feed them into ResolveNativeReference) --> <MSBuild Projects="@(_MSBuildProjectReferenceExistent)" Targets="GetNativeManifest" Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)" Condition="'$(BuildingProject)'=='true' and '@(_MSBuildProjectReferenceExistent)'!=''"> <Output TaskParameter="TargetOutputs" ItemName="NativeReference"/> </MSBuild> <!-- Issue a warning for each non-existent project. --> <Warning Text="The referenced project '%(_MSBuildProjectReferenceNonexistent.Identity)' does not exist." Condition="'@(_MSBuildProjectReferenceNonexistent)'!=''"/> </Target> <!-- ============================================================ GetTargetPath This stand-alone target returns the name of the build product (i.e. EXE, DLL) that would be produced if we built this project. ============================================================ --> <Target Name="GetTargetPath" Outputs="$(TargetPath)"/> <!-- ============================================================ GetNativeManifest Compute the manifest item for this project. [IN] $(_DeploymentApplicationManifestIdentity) - the manifest identity @(ApplicationManifest) - the original application manifest item [OUT] @(ComputedApplicationManifest) - application manifest item with full hint path, if generated ============================================================ --> <Target Name="GetNativeManifest" Outputs="@(ComputedApplicationManifest)"> <CreateItem Include="$(_DeploymentApplicationManifestIdentity)" AdditionalMetadata="HintPath=%(_ApplicationManifestFinal.FullPath)" Condition="Exists('%(_ApplicationManifestFinal.FullPath)')"> <Output TaskParameter="Include" ItemName="ComputedApplicationManifest"/> </CreateItem> </Target> <!-- ============================================================ ResolveVCProjectReferences Find outputs of referenced VC projects (currently we never build VC projects ourselves) [IN] @(VCProjectReference) - the list of VC project references [OUT] @(_ResolvedProjectReferencePaths) - paths to projects' outputs ============================================================ --> <Target Name="ResolveVCProjectReferences" Condition="'@(VCProjectReference)'!=''" DependsOnTargets="SplitProjectReferencesByType"> <!-- Use the task for matching projects with pre-resolved project outputs set by the IDE if building inside the IDE --> <ResolveNonMSBuildProjectOutput ProjectReferences="@(VCProjectReference)" PreresolvedProjectOutputs="$(VSIDEResolvedNonMSBuildProjectOutputs)" Condition="'$(BuildingInsideVisualStudio)'=='true'"> <Output TaskParameter="ResolvedOutputPaths" ItemName="_ResolvedVCProjectReferencePaths"/> </ResolveNonMSBuildProjectOutput> <!-- Use the task that uses VC project engine if building from the command line. Invoking this task only makes sense for building solution files, otherwise we won't have the necessary configuration information. --> <ResolveVCProjectOutput ProjectReferences="@(VCProjectReference)" Configuration="%(VCProjectReference.FullConfiguration)" SolutionFile="$(SolutionPath)" Override="$(VCBuildOverride)" Condition="'$(BuildingSolutionFile)'=='true'"> <Output TaskParameter="ResolvedOutputPaths" ItemName="_ResolvedVCProjectReferencePaths"/> </ResolveVCProjectOutput> <Error Text="MSBuild cannot resolve the reference to the Visual C++ project '%(VCProjectReference.Identity)' when building a stand-alone MSBuild project. To correctly resolve this reference, please build the solution file containing these projects." Condition="'$(BuildingSolutionFile)'!='true' and '$(BuildingInsideVisualStudio)'!='true'" /> <CreateItem Include="@(_ResolvedVCProjectReferencePaths->'Native.%(Filename)%(Extension)')" AdditionalMetadata="HintPath=%(FullPath).manifest" Condition="Exists('%(FullPath).manifest')"> <Output TaskParameter="Include" ItemName="NativeReference"/> </CreateItem> <CreateItem Include="@(_ResolvedVCProjectReferencePaths)"> <Output TaskParameter="Include" ItemName="_ResolvedProjectReferencePaths"/> </CreateItem> </Target> <!-- ============================================================ ResolveNativeReferences Resolve native references [IN] @(NativeReference) - The manifest reference (or list of manifest references) [OUT] @(NativeReferenceFile) - List of manifest files referenced. @(_DeploymentNativePrerequisite) - List of native assembly prerequisites contained in the manifest. @(ComClassReference) - List of COM components contained in the manifest. @(COMReferenceFromNative) List of type libraries contained in the manifest. @(COMFileReference) - List of loose files contained in the manifest. @(_DeploymentLooseManifestFile) - List of extra files that should be published. ============================================================ --> <Target Name="ResolveNativeReferences" Condition="'@(NativeReference)'!=''" DependsOnTargets="ResolveProjectReferences;ResolveVCProjectReferences"> <ResolveNativeReference NativeReferences="@(NativeReference)" AdditionalSearchPaths="$(ReferencePath);$(OutputPath)" > <Output TaskParameter="ContainingReferenceFiles" ItemName="NativeReferenceFile"/> <Output TaskParameter="ContainedPrerequisiteAssemblies" ItemName="_DeploymentNativePrerequisite"/> <Output TaskParameter="ContainedComComponents" ItemName="ComClassReference"/> <Output TaskParameter="ContainedTypeLibraries" ItemName="COMReferenceFromNative"/> <Output TaskParameter="ContainedLooseTlbFiles" ItemName="COMFileReference"/> <Output TaskParameter="ContainedLooseEtcFiles" ItemName="_DeploymentLooseManifestFile"/> </ResolveNativeReference> </Target> <!-- ============================================================ GetRedistLists Get the set of Redist lists (typically, *.xml). A 'Redist List' identifies assemblies that are part of a redistributable package. [IN] $(TargetFrameworkDirectory) - Name of the target framework directory. $(NoDefaultRedistLists) - When false, the default set of redist lists will be ignored. @(RedistList) - Paths to any extra redist list files to be included directly. [OUT] @(InstalledAssemblyTables) - Paths to all redist list files. ============================================================ --> <PropertyGroup> <GetRedistListsDependsOn> GetFrameworkPaths </GetRedistListsDependsOn> </PropertyGroup> <Target Name="GetRedistLists" DependsOnTargets="$(GetRedistListsDependsOn)"> <!-- InstalledAssemblyTables item list is a list of .XML files that contain a set of assemblies that are expected to exist on the target machine. --> <CreateItem Include="$(TargetFrameworkDirectory)" Condition="'$(NoDefaultRedistLists)'!='false'"> <Output TaskParameter="Include" ItemName="_ReferenceInstalledAssemblyDirectory" /> </CreateItem> <CreateItem Include="@(_ReferenceInstalledAssemblyDirectory->'%(Identity)\RedistList\*.xml');@(RedistList)"> <Output TaskParameter="Include" ItemName="InstalledAssemblyTables" /> </CreateItem> </Target> <!-- ============================================================ ResolveAssemblyReferences Given the list of assemblies, find the closure of all assemblies that they depend on. These are what we need to copy to the output directory. [IN] @(Reference) - List of assembly references as fusion names. @(_ResolvedProjectReferencePaths) - List of project references produced by projects that this project depends on. The 'Private' attribute on the reference corresponds to the Copy Local flag in IDE. The 'Private' flag can have three possible values: - 'True' means the reference should be Copied Local - 'False' means the reference should not be Copied Local - [Missing] means this task will decide whether to treat this reference as CopyLocal or not. [OUT] @(ReferencePath) - Paths to resolved primary files. @(ReferenceDependencyPaths) - Paths to resolved dependency files. @(_ReferenceRelatedPaths) - Paths to .xmls and .pdbs. @(ReferenceSatellitePaths) - Paths to satellites. @(_ReferenceSerializationAssemblyPaths) - Paths to XML serialization assemblies created by sgen. @(_ReferenceScatterPaths) - Paths to scatter files. @(ReferenceCopyLocalPaths) - Paths to files that should be copied to the local directory. ============================================================ --> <PropertyGroup> <ResolveAssemblyReferencesDependsOn> GetFrameworkPaths; GetRedistLists; PrepareForBuild </ResolveAssemblyReferencesDependsOn> </PropertyGroup> <Target Name="ResolveAssemblyReferences" Condition="'@(Reference)'!='' or '@(_ResolvedProjectReferencePaths)'!=''" DependsOnTargets="$(ResolveAssemblyReferencesDependsOn)"> <!-- Only read and write cache file at build time, skip it for load time because its more expensive to write the newly created cache file. --> <CreateProperty Value="$(IntermediateOutputPath)ResolveAssemblyReference.cache" Condition="'$(BuildingProject)'=='true'"> <Output TaskParameter="Value" PropertyName="ResolveAssemblyReferencesStateFile" /> </CreateProperty> <!-- Make an App.Config item that exists when AutoUnify is false. --> <CreateItem Include="@(AppConfigWithTargetPath)" Condition="'$(AutoUnifyAssemblyReferences)'=='false'"> <Output TaskParameter="Include" ItemName="_ResolveAssemblyReferencesApplicationConfigFileForExes" /> </CreateItem> <ResolveAssemblyReference Assemblies="@(Reference)" AssemblyFiles="@(_ResolvedProjectReferencePaths)" TargetFrameworkDirectories="@(_ReferenceInstalledAssemblyDirectory)" InstalledAssemblyTables="@(InstalledAssemblyTables)" CandidateAssemblyFiles="@(Content);@(None)" SearchPaths="$(AssemblySearchPaths)" AllowedAssemblyExtensions="$(AllowedReferenceAssemblyFileExtensions)" AllowedRelatedFileExtensions="$(AllowedReferenceRelatedFileExtensions)" TargetProcessorArchitecture="$(ProcessorArchitecture)" AppConfigFile="@(_ResolveAssemblyReferencesApplicationConfigFileForExes)" AutoUnify="$(AutoUnifyAssemblyReferences)" FindDependencies="$(BuildingProject)" FindSatellites="$(BuildingProject)" FindSerializationAssemblies="$(BuildingProject)" FindRelatedFiles="$(BuildingProject)" Silent="!$(BuildingProject)" StateFile="$(ResolveAssemblyReferencesStateFile)"> <Output TaskParameter="ResolvedFiles" ItemName="ReferencePath"/> <Output TaskParameter="ResolvedFiles" ItemName="_ResolveAssemblyReferenceResolvedFiles"/> <Output TaskParameter="ResolvedDependencyFiles" ItemName="ReferenceDependencyPaths"/> <Output TaskParameter="RelatedFiles" ItemName="_ReferenceRelatedPaths"/> <Output TaskParameter="SatelliteFiles" ItemName="ReferenceSatellitePaths"/> <Output TaskParameter="SerializationAssemblyFiles" ItemName="_ReferenceSerializationAssemblyPaths"/> <Output TaskParameter="ScatterFiles" ItemName="_ReferenceScatterPaths"/> <Output TaskParameter="CopyLocalFiles" ItemName="ReferenceCopyLocalPaths"/> <Output TaskParameter="SuggestedRedirects" ItemName="SuggestedBindingRedirects"/> <Output TaskParameter="FilesWritten" ItemName="FileWrites"/> </ResolveAssemblyReference> </Target> <!-- ============================================================ ResolveComReferences Resolve COM references [IN] @(COMReference) - The list of COM references $(BaseIntermediateOutputPath) - The output directory in which to generate wrapper assemblies [OUT] @(ReferencePath) - Paths to referenced wrappers. If ResolveComReferences is invoked from the IDE, PrepareForBuild may need to run to create directories. ============================================================ --> <Target Name="ResolveComReferences" Condition="'@(COMReference)'!='' or '@(COMFileReference)'!=''" DependsOnTargets="PrepareForBuild;ResolveKeySource;ResolveAssemblyReferences" > <!-- Note: This task should not be batched, since it relies on having all the COM references fed into it at once. --> <ResolveComReference TypeLibNames="@(COMReference)" TypeLibFiles="@(COMFileReference)" ResolvedAssemblyReferences="@(ReferencePath)" WrapperOutputDirectory="$(IntermediateOutputPath)" KeyContainer="$(KeyContainerName)" KeyFile="$(KeyOriginatorFile)" DelaySign="$(DelaySign)" StateFile="@(_ResolveComReferenceCache)"> <Output TaskParameter="ResolvedFiles" ItemName="ReferencePath"/> <Output TaskParameter="ResolvedFiles" ItemName="ComReferenceWrappers"/> <Output TaskParameter="ResolvedFiles" ItemName="FileWrites"/> <!-- This output list only includes items with Isolated attribute set to True. It's done by the task itself. --> <Output TaskParameter="ResolvedModules" ItemName="ResolvedIsolatedComModules"/> </ResolveComReference> <CreateItem Include="@(_ResolveComReferenceCache)"> <Output TaskParameter="Include" ItemName="FileWrites"/> </CreateItem> <CreateItem Include="@(ComReferenceWrappers)" Condition="'%(ComReferenceWrappers.CopyLocal)'!='false'"> <Output TaskParameter="Include" ItemName="ReferenceComWrappersToCopyLocal"/> </CreateItem> </Target> <!-- *********************************************************************************************** *********************************************************************************************** PrepareResources Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ PrepareResources Prepare resources for the Compile step. ============================================================ --> <PropertyGroup> <PrepareResourcesDependsOn> PrepareResourceNames; _CopyNonResxEmbeddedResources; ResGen; CompileLicxFiles </PrepareResourcesDependsOn> </PropertyGroup> <Target Name="PrepareResources" DependsOnTargets="$(PrepareResourcesDependsOn)"/> <!-- ============================================================ PrepareResourceNames Prepare the names of resource files. ============================================================ --> <PropertyGroup> <PrepareResourceNamesDependsOn> AssignTargetPaths; SplitResourcesByCulture; CreateManifestResourceNames </PrepareResourceNamesDependsOn> </PropertyGroup> <Target Name="PrepareResourceNames" DependsOnTargets="$(PrepareResourceNamesDependsOn)"/> <!-- ============================================================ AssignTargetPaths This target creates <TargetPath> tags for items. <TargetPath> is a relative folder plus filename for the destination of this item. ============================================================ --> <Target Name="AssignTargetPaths"> <AssignTargetPath Files="@(EmbeddedResource)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="_EmbeddedResourceWithTargetPath" /> </AssignTargetPath> <AssignTargetPath Files="@(Content)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="ContentWithTargetPath" /> </AssignTargetPath> <AssignTargetPath Files="@(None)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="_NoneWithTargetPath" /> </AssignTargetPath> <AssignTargetPath Files="@(BaseApplicationManifest)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="_DeploymentBaseManifestWithTargetPath"/> </AssignTargetPath> <AssignTargetPath Files="@(None)" RootFolder="$(MSBuildProjectDirectory)" Condition="'%(Extension)' == '.manifest' and '@(BaseManifestWithTargetPath)' == ''"> <Output TaskParameter="AssignedFiles" ItemName="_DeploymentBaseManifestWithTargetPath" /> </AssignTargetPath> </Target> <!-- ============================================================ SplitResourcesByCulture Split EmbeddedResource items into five lists based on whether they are resx files, licx files or other resources and whether they should be localized. [IN] @(_EmbeddedResourceWithTargetPath) - The raw list of resources. [OUT] @(_LicxFile) - The EmbeddedResource items with extension equal to '.licx'. @(ResxWithNoCulture) - Those with no culture that should be passed through the GenerateResource task. @(ResxWithCulture) - Those with culture that should be passed through the GenerateResource task. @(NonResxWithNoCulture) - Those that should be passed directly into the compiler. @(NonResxWithCulture) - Those that should be passed directly into AL for the satellite assemblies. ============================================================ --> <Target Name="SplitResourcesByCulture" DependsOnTargets="AssignTargetPaths"> <CreateItem Include="@(_EmbeddedResourceWithTargetPath)" Condition="'%(Extension)'=='.licx'"> <Output TaskParameter="Include" ItemName="_LicxFile"/> </CreateItem> <AssignCulture Files="@(_EmbeddedResourceWithTargetPath)" Condition="'%(Extension)'!='.licx'"> <!-- Create the list of culture resx and embedded resource files --> <Output TaskParameter="AssignedFilesWithCulture" ItemName="_MixedResourceWithCulture"/> <!-- Create the list of non-culture resx and embedded resource files --> <Output TaskParameter="AssignedFilesWithNoCulture" ItemName="_MixedResourceWithNoCulture"/> </AssignCulture> <CreateItem Include="@(_MixedResourceWithNoCulture)" Condition="'%(Extension)'=='.resx' or '%(Extension)'=='.restext'"> <Output TaskParameter="Include" ItemName="ResxWithNoCulture"/> </CreateItem> <CreateItem Include="@(_MixedResourceWithNoCulture)" Condition="'%(Extension)'!='.resx' and '%(Extension)'!='.restext'"> <Output TaskParameter="Include" ItemName="NonResxWithNoCulture"/> </CreateItem> <CreateItem Include="@(_MixedResourceWithCulture)" Condition="'%(Extension)'=='.resx' or '%(Extension)'=='.restext'"> <Output TaskParameter="Include" ItemName="ResxWithCulture"/> </CreateItem> <CreateItem Include="@(_MixedResourceWithCulture)" Condition="'%(Extension)'!='.resx' and '%(Extension)'!='.restext'"> <Output TaskParameter="Include" ItemName="NonResxWithCulture"/> </CreateItem> </Target> <!-- ============================================================ _CopyNonResxEmbeddedResources Copy non-resx resource files from their original name to the manifest resource name. This is so that the file will be in the location expected by the compiler. ============================================================ --> <Target Name="_CopyNonResxEmbeddedResources" Condition="'@(NonResxWithNoCulture)'!='' or '@(NonResxWithCulture)'!='' or '@(ManifestNonResxWithNoCulture)'!='' or '@(ManifestNonResxWithCulture)'!=''"> <Copy SourceFiles="@(NonResxWithNoCulture)" DestinationFiles="@(ManifestNonResxWithNoCulture->'$(IntermediateOutputPath)%(Identity)')" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="ManifestNonResxWithNoCultureOnDisk"/> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <MakeDir Directories="$(IntermediateOutputPath)%(ManifestNonResxWithCulture.Culture)"/> <Copy SourceFiles="@(NonResxWithCulture)" DestinationFiles="@(ManifestNonResxWithCulture->'$(IntermediateOutputPath)%(Identity)')" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="ManifestNonResxWithCultureOnDisk"/> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> </Target> <!-- ============================================================ ResGen Run GenerateResource on the given resx files. This task checks timestamps internally for the .resx files as well as any linked files that are referenced in the .resx file against the .resources file, so it does not need to specify Inputs or Outputs in the Target. [IN] @(ResxWithNoCulture) - The names the non-culture .RESX files. @(ResxWithCulture) - The names the culture .RESX files. @(ManifestResourceWithNoCultureName) - The corresponding manifest resource name (.RESOURCE) @(ManifestResourceWithCultureName) - The corresponding manifest resource name (.RESOURCE) [OUT] @(ManifestResourceWithNoCulture) - The path to the corresponding .RESOURCE files @(ManifestResourceWithCulture) - The path to the corresponding .RESOURCE files ============================================================ --> <PropertyGroup> <ResGenDependsOn>ResolveAssemblyReferences;SplitResourcesByCulture;BeforeResGen;CoreResGen;AfterResGen</ResGenDependsOn> <CoreResGenDependsOn></CoreResGenDependsOn> <UseSourcePath Condition="'$(UseSourcePath)'==''">true</UseSourcePath> </PropertyGroup> <Target Name="ResGen" DependsOnTargets="$(ResGenDependsOn)"/> <!-- ============================================================ BeforeResGen Redefine this target in your project in order to run tasks just before Resgen. ============================================================ --> <Target Name="BeforeResGen"/> <!-- ============================================================ AfterResGen Redefine this target in your project in order to run tasks just after Resgen. ============================================================ --> <Target Name="AfterResGen"/> <!-- ============================================================ CoreResGen ============================================================ --> <Target Name="CoreResGen" DependsOnTargets="$(CoreResGenDependsOn)"> <GenerateResource Sources="@(ResxWithNoCulture)" UseSourcePath="$(UseSourcePath)" References="@(ReferencePath)" NeverLockTypeAssemblies="$(GenerateResourceNeverLockTypeAssemblies)" StateFile="$(IntermediateOutputPath)$(MSBuildProjectFile).GenerateResource.Cache" OutputResources="@(ManifestResourceWithNoCultureName->'$(IntermediateOutputPath)%(Identity).resources')" Condition=" '@(ResxWithNoCulture)' != '' "> <Output TaskParameter="OutputResources" ItemName="ManifestResourceWithNoCulture"/> <Output TaskParameter="FilesWritten" ItemName="FileWrites"/> </GenerateResource> <GenerateResource Sources="@(ResxWithCulture)" UseSourcePath="$(UseSourcePath)" References="@(ReferencePath)" NeverLockTypeAssemblies="$(GenerateResourceNeverLockTypeAssemblies)" StateFile="$(IntermediateOutputPath)$(MSBuildProjectFile).GenerateResource.Cache" OutputResources="@(ManifestResourceWithCultureName->'$(IntermediateOutputPath)%(Identity).resources')" Condition=" '@(ResxWithCulture)' != '' "> <Output TaskParameter="OutputResources" ItemName="ManifestResourceWithCulture"/> <Output TaskParameter="FilesWritten" ItemName="FileWrites"/> </GenerateResource> </Target> <!-- ============================================================ CompileLicxFiles Compile .licx files (containing information about licensed controls used by the application) into .licenses files. [IN] @(_LicxFile) - The list of .licx files in the project (usually there will be just one) [OUT] @(CompiledLicenseFile) - The list of compiled .licenses files (there will be just one) ============================================================ --> <PropertyGroup> <CompileLicxFilesDependsOn></CompileLicxFilesDependsOn> </PropertyGroup> <Target Name="CompileLicxFiles" Condition="'@(_LicxFile)'!=''" DependsOnTargets="$(CompileLicxFilesDependsOn)" Inputs="$(MSBuildAllProjects);@(_LicxFile);@(ReferencePath);@(ReferenceDependencyPaths)" Outputs="$(IntermediateOutputPath)$(TargetFileName).licenses"> <LC Sources="@(_LicxFile)" LicenseTarget="$(TargetFileName)" OutputDirectory="$(IntermediateOutputPath)" OutputLicense="$(IntermediateOutputPath)$(TargetFileName).licenses" ReferencedAssemblies="@(ReferencePath);@(ReferenceDependencyPaths)" ToolPath="$(LCToolPath)"> <Output TaskParameter="OutputLicense" ItemName="CompiledLicenseFile"/> <Output TaskParameter="OutputLicense" ItemName="FileWrites"/> </LC> </Target> <!-- *********************************************************************************************** *********************************************************************************************** ResolveKeySource Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ ResolveKeySource Resolve the strong name key used to sign the assembly as well as the certificate used to sign the ClickOnce manifests. [IN] $(AssemblyOriginatorKeyFile) - The file used to sign the assembly (.snk or .pfx) $(ManifestCertificateThumbprint) - The thumbprint used to locate the certificate in the user's certificate store. $(ManifestKeyFile) - The key file that contains the certificate in case the certificate is not in the user's store. [OUT] $(ResolvedAssemblyKeyFile) - Key used to sign the assembly $(_DeploymentResolvedManifestCertificateThumbprint) - Certificate used to sign the manifests ============================================================ --> <Target Name="ResolveKeySource" Condition="$(SignManifests) == 'true' or $(SignAssembly) == 'true'"> <ResolveKeySource KeyFile="$(AssemblyOriginatorKeyFile)" CertificateThumbprint="$(ManifestCertificateThumbprint)" CertificateFile="$(ManifestKeyFile)" SuppressAutoClosePasswordPrompt="$(BuildingInsideVisualStudio)" ShowImportDialogDespitePreviousFailures="$(BuildingProject)" ContinueOnError="!$(BuildingProject)" > <Output TaskParameter="ResolvedKeyFile" PropertyName="KeyOriginatorFile" Condition=" '$(SignAssembly)' == 'true' "/> <Output TaskParameter="ResolvedKeyContainer" PropertyName="KeyContainerName" Condition=" '$(SignAssembly)' == 'true' "/> <Output TaskParameter="ResolvedThumbprint" PropertyName="_DeploymentResolvedManifestCertificateThumbprint" Condition=" '$(SignManifests)' == 'true' "/> </ResolveKeySource> </Target> <!-- *********************************************************************************************** *********************************************************************************************** Compile Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ Compile ============================================================ --> <PropertyGroup> <CompileDependsOn> ResolveReferences; ResolveKeySource; BeforeCompile; _TimeStampBeforeCompile; CoreCompile; _TimeStampAfterCompile; AfterCompile </CompileDependsOn> </PropertyGroup> <Target Name="Compile" DependsOnTargets="$(CompileDependsOn)"/> <!-- ============================================================ BeforeCompile Redefine this target in your project in order to run tasks just before Compile. ============================================================ --> <Target Name="BeforeCompile"/> <!-- ============================================================ AfterCompile Redefine this target in your project in order to run tasks just after Compile. ============================================================ --> <Target Name="AfterCompile"/> <!-- ============================================================ _TimeStampBeforeCompile If post-build events are set to fire "OnOutputUpdated", then take before and after timestamps so that we can compare them. ============================================================ --> <Target Name="_TimeStampBeforeCompile" Condition="'$(RunPostBuildEvent)'=='OnOutputUpdated'"> <CreateItem Include="%(IntermediateAssembly.ModifiedTime)"> <Output TaskParameter="Include" PropertyName="_AssemblyTimestampBeforeCompile"/> </CreateItem> </Target> <!-- ============================================================ _TimeStampAfterCompile If post-build events are set to fire "OnOutputUpdated", then take before and after timestamps so that we can compare them. ============================================================ --> <Target Name="_TimeStampAfterCompile" Condition="'$(RunPostBuildEvent)'=='OnOutputUpdated'"> <CreateItem Include="%(IntermediateAssembly.ModifiedTime)"> <Output TaskParameter="Include" PropertyName="_AssemblyTimestampAfterCompile"/> </CreateItem> </Target> <!-- ================================================================ _ComputeNonExistentFileProperty There are certain situations in which we want to always run the CoreCompile target (and thus the Csc task), even if the timestamps of the outputs appear to be up-to-date on disk. If we're inside the IDE during design-time, then the Csc/Vbc/Vjc task is simply being used to initialize the host compiler, so we always want to run it. Also, if we're inside the IDE, and the host compiler is responsible for doing the compilation during an actual build, we want to let the host compiler determine whether the output is up-to-date, because there may be source files in the IDE's in-memory buffers that we don't know about. So, we always run the CoreCompile target if we're in the IDE, and either we're in design-time or we're delegating to the host compiler for the actual build. ================================================================ --> <Target Name="_ComputeNonExistentFileProperty" Condition=" ('$(BuildingInsideVisualStudio)' == 'true') and ( ('$(BuildingProject)' == 'false') or ('$(UseHostCompilerIfAvailable)' == 'true') ) "> <CreateProperty Value="__NonExistentSubDir__\__NonExistentFile__"> <Output TaskParameter="Value" PropertyName="NonExistentFile"/> </CreateProperty> </Target> <!-- *********************************************************************************************** *********************************************************************************************** GenerateSerializationAssemblies Section *********************************************************************************************** *********************************************************************************************** --> <PropertyGroup> <_SGenDllName>$(TargetName).XmlSerializers.dll</_SGenDllName> <_SGenDllCreated>false</_SGenDllCreated> <_SGenGenerateSerializationAssembliesConfig>$(GenerateSerializationAssemblies)</_SGenGenerateSerializationAssembliesConfig> <_SGenGenerateSerializationAssembliesConfig Condition="'$(GenerateSerializationAssemblies)' == ''">Auto</_SGenGenerateSerializationAssembliesConfig> <_SGenGenerateSerializationAssembliesConfig Condition="'$(ConfigurationName)'=='Debug' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto'">Off</_SGenGenerateSerializationAssembliesConfig> </PropertyGroup> <!-- ============================================================ GenerateSerializationAssemblies Run GenerateSerializationAssemblies on the assembly produced by this build. [IN] @(BuildAssemblyName) - The assembly generated by this build. @(BuildAssemblyPath) - The path where the assembly resides. @(ReferencePath) - The list of references used by this assembly. [OUT] @(SerializationAssembly) - The path to the serialization assembly. Maybe we'll just append to an existing list. ============================================================ --> <Target Name="GenerateSerializationAssemblies" Condition="'$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')" DependsOnTargets="AssignTargetPaths;Compile;ResolveKeySource" Inputs="$(MSBuildAllProjects);@(IntermediateAssembly)" Outputs="$(IntermediateOutputPath)$(_SGenDllName)"> <SGen BuildAssemblyName="$(TargetFileName)" BuildAssemblyPath="$(IntermediateOutputPath)" References="@(ReferencePath)" ShouldGenerateSerializer="true" UseProxyTypes="true" KeyContainer="$(KeyContainerName)" KeyFile="$(KeyOriginatorFile)" DelaySign="$(DelaySign)" ToolPath="$(SGenToolPath)"> <Output TaskParameter="SerializationAssembly" ItemName="SerializationAssembly"/> </SGen> </Target> <!-- *********************************************************************************************** *********************************************************************************************** CreateSatelliteAssemblies Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ CreateSatelliteAssemblies Create one satellite assembly for every unique culture in the resources. [IN] @(ManifestResourceWithCulture) - The list of culture-specific resource (.RESOURCE) files. @(ManifestNonResxWithCultureOnDisk) - The list of culture-specific non-.RESX resource files. ============================================================ --> <PropertyGroup> <CreateSatelliteAssembliesDependsOn> ComputeIntermediateSatelliteAssemblies </CreateSatelliteAssembliesDependsOn> </PropertyGroup> <Target Name="CreateSatelliteAssemblies" Condition="'@(ManifestResourceWithCulture)'!='' or '@(ManifestNonResxWithCultureOnDisk)'!=''" DependsOnTargets="$(CreateSatelliteAssembliesDependsOn)" Inputs="$(MSBuildAllProjects);@(ManifestResourceWithCulture);@(ManifestNonResxWithCultureOnDisk);$(IntermediateOutputPath)$(TargetName)$(TargetExt)" Outputs="$(IntermediateOutputPath)%(Culture)\$(TargetName).resources.dll"> <MakeDir Directories="$(IntermediateOutputPath)%(ManifestResourceWithCulture.Culture)" Condition=" '@(ManifestResourceWithCulture)' != '' "/> <MakeDir Directories="$(IntermediateOutputPath)%(ManifestNonResxWithCultureOnDisk.Culture)" Condition=" '@(ManifestNonResxWithCultureOnDisk)' != '' "/> <AL AlgorithmId="$(Satellite_AlgorithmId)" BaseAddress="$(Satellite_BaseAddress)" CompanyName="$(Satellite_CompanyName)" Configuration="$(Satellite_Configuration)" Copyright="$(Satellite_Copyright)" Culture="%(Culture)" DelaySign="$(DelaySign)" Description="$(Satellite_Description)" EmbedResources="@(ManifestResourceWithCulture);@(ManifestNonResxWithCultureOnDisk)" EvidenceFile="$(Satellite_EvidenceFile)" FileVersion="$(Satellite_FileVersion)" Flags="$(Satellite_Flags)" GenerateFullPaths="$(Satellite_GenerateFullPaths)" KeyContainer="$(KeyContainerName)" KeyFile="$(KeyOriginatorFile)" LinkResources="@(Satellite_LinkResource)" MainEntryPoint="$(Satellite_MainEntryPoint)" OutputAssembly="$(IntermediateOutputPath)%(Culture)\$(TargetName).resources.dll" Platform="$(PlatformTarget)" ProductName="$(Satellite_ProductName)" ProductVersion="$(Satellite_ProductVersion)" ResponseFiles="@(AlResponseFile)" SourceModules="@(Satellite_SourceModule)" TargetType="$(Satellite_TargetType)" TemplateFile="$(IntermediateOutputPath)$(TargetName)$(TargetExt)" Title="$(Satellite_Title)" ToolPath="$(AlToolPath)" Trademark="$(Satellite_Trademark)" Version="$(Satellite_Version)" Win32Icon="$(Satellite_Win32Icon)" Win32Resource="$(Satellite_Win32Resource)"> <Output TaskParameter="OutputAssembly" ItemName="FileWrites"/> </AL> </Target> <!-- ============================================================ ComputeIntermediateSatelliteAssemblies Compute the paths to the intermediate satellite assemblies, with culture attributes so we can copy them to the right place. ============================================================ --> <Target Name="ComputeIntermediateSatelliteAssemblies" Condition="'@(ManifestResourceWithCulture)'!='' or '@(ManifestNonResxWithCulture)'!=''"> <CreateItem Include="$(IntermediateOutputPath)%(Culture)\$(TargetName).resources.dll" AdditionalMetadata="Culture=%(Culture); TargetPath=%(Culture)\$(TargetName).resources.dll" Condition="'@(ManifestResourceWithCulture)'!='' or '@(ManifestNonResxWithCulture)'!=''"> <Output TaskParameter="Include" ItemName="IntermediateSatelliteAssembliesWithTargetPath"/> </CreateItem> </Target> <!-- *********************************************************************************************** *********************************************************************************************** GenerateManifests Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ GenerateManifests Generates ClickOnce application and deployment manifests or a native manifest. ============================================================ --> <Target Name="GenerateManifests" Condition="'$(GenerateClickOnceManifests)'=='true' or '@(NativeReference)'!='' or '@(ResolvedIsolatedComModules)'!=''" DependsOnTargets="GenerateApplicationManifest;GenerateDeploymentManifest"/> <!-- ============================================================ GenerateApplicationManifest Generates a ClickOnce or native application manifest. An application manifest specifies declarative application identity, dependency and security information. [IN] @(_DeploymentBaseManifestWithTargetPath) - The base app.manifest from project. @(ResolvedIsolatedComModules) - The list of COM references to be isolated as reg-free COM dependencies for native assembly loader. @(_DeploymentManifestFiles) - The list of loose files (content, pdb, xml, etc.) for ClickOnce. @(_DeploymentManifestDependencies) - The list of application dependencies (typically this is the set of assembly dependencies in bin\) for ClickOnce. @(AppConfigWithTargetPath) - App config file, if present. $(_DeploymentManifestType) - Type of manifest to be generated, either "Native" or "ClickOnce". [OUT] @(ApplicationManifest) - Generated native or ClickOnce application manifest, i.e. WindowsApplication1.exe.manifest ============================================================ --> <Target Name="GenerateApplicationManifest" DependsOnTargets=" _DeploymentComputeNativeManifestInfo; _DeploymentComputeClickOnceManifestInfo; ResolveComReferences; ResolveNativeReferences" Inputs=" $(MSBuildAllProjects); @(AppConfigWithTargetPath); @(_DeploymentBaseManifestWithTargetPath); @(ResolvedIsolatedComModules); @(_DeploymentManifestDependencies); @(_DeploymentManifestEntryPoint); @(_DeploymentManifestFiles)" Outputs="@(ApplicationManifest)"> <GenerateApplicationManifest AssemblyName="$(_DeploymentApplicationManifestIdentity)" AssemblyVersion="$(_DeploymentManifestVersion)" ConfigFile="@(AppConfigWithTargetPath)" ClrVersion="$(ClrVersion)" Dependencies="@(_DeploymentManifestDependencies)" Description="$(Description)" EntryPoint="@(_DeploymentManifestEntryPoint)" Files="@(_DeploymentManifestFiles)" IconFile="@(_DeploymentManifestIconFile)" InputManifest="@(_DeploymentBaseManifestWithTargetPath)" IsolatedComReferences="@(ResolvedIsolatedComModules)" ManifestType="$(_DeploymentManifestType)" MaxTargetPath="$(MaxTargetPath)" OutputManifest="@(ApplicationManifest)" OSVersion="$(OSVersion)" Platform="$(PlatformTarget)" TargetCulture="$(TargetCulture)" TrustInfoFile="@(_DeploymentIntermediateTrustInfoFile)"> <Output TaskParameter="OutputManifest" ItemName="FileWrites"/> </GenerateApplicationManifest> <CreateProperty Value="true"> <Output TaskParameter="Value" PropertyName="_DeploymentCopyApplicationManifest" /> </CreateProperty> </Target> <!-- ============================================================ _DeploymentComputeNativeManifestInfo Compute info for native manifest generation ============================================================ --> <Target Name="_DeploymentComputeNativeManifestInfo" Condition="'$(GenerateClickOnceManifests)'!='true'"> <!-- Create list of items for manifest generation --> <ResolveManifestFiles NativeAssemblies="@(NativeReferenceFile);@(_DeploymentNativePrerequisite)"> <Output TaskParameter="OutputAssemblies" ItemName="_DeploymentManifestDependencies"/> </ResolveManifestFiles> <CreateProperty Value="Native"> <Output TaskParameter="Value" PropertyName="_DeploymentManifestType"/> </CreateProperty> <!-- Obtain manifest version from the built assembly --> <GetAssemblyIdentity AssemblyFiles="@(IntermediateAssembly)"> <Output TaskParameter="Assemblies" ItemName="_IntermediateAssemblyIdentity"/> </GetAssemblyIdentity> <CreateProperty Value="@(_IntermediateAssemblyIdentity->'%(Version)')"> <Output TaskParameter="Value" PropertyName="_DeploymentManifestVersion"/> </CreateProperty> </Target> <!-- ============================================================ _DeploymentComputeClickOnceManifestInfo Compute info for ClickOnce manifest generation ============================================================ --> <Target Name="_DeploymentComputeClickOnceManifestInfo" Condition="'$(GenerateClickOnceManifests)'=='true'" DependsOnTargets="_DeploymentGenerateTrustInfo"> <!-- Grab just the serialization assemblies for a referenced assembly. There may also be a symbols file in ReferenceRelatedPaths --> <CreateItem Include="@(_ReferenceSerializationAssemblyPaths)" Condition="'%(Extension)' == '.dll'"> <Output TaskParameter="Include" ItemName="_SGenDllsRelatedToCurrentDll0" /> </CreateItem> <CreateItem Include="@(_SGenDllsRelatedToCurrentDll0->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="_SGenDllsRelatedToCurrentDll" /> </CreateItem> <!-- Flag primary dependencies-certain warnings emitted during application manifest generation apply only to them. --> <CreateItem Include="@(ReferencePath)" AdditionalMetadata="IsPrimary=true" > <Output TaskParameter="Include" ItemName="_DeploymentReferencePaths"/> </CreateItem> <!-- Create list of items for manifest generation --> <ResolveManifestFiles EntryPoint="@(_DeploymentManifestEntryPoint)" ExtraFiles="$(IntermediateOutputPath)$(TargetName).pdb;$(IntermediateOutputPath)$(TargetName).xml;@(_ReferenceRelatedPaths)" Files="@(ContentWithTargetPath);@(_DeploymentManifestIconFile);@(AppConfigWithTargetPath)" ManagedAssemblies="@(_DeploymentReferencePaths);@(ReferenceDependencyPaths);@(_SGenDllsRelatedToCurrentDll)" NativeAssemblies="@(NativeReferenceFile);@(_DeploymentNativePrerequisite)" PublishFiles="@(PublishFile)" SatelliteAssemblies="@(IntermediateSatelliteAssembliesWithTargetPath);@(ReferenceSatellitePaths)" TargetCulture="$(TargetCulture)"> <Output TaskParameter="OutputAssemblies" ItemName="_DeploymentManifestDependencies"/> <Output TaskParameter="OutputFiles" ItemName="_DeploymentManifestFiles"/> </ResolveManifestFiles> <CreateProperty Value="ClickOnce"> <Output TaskParameter="Value" PropertyName="_DeploymentManifestType"/> </CreateProperty> <!-- Obtain manifest version from ApplicationVersion and ApplicationRevision properties --> <FormatVersion Version="$(ApplicationVersion)" Revision="$(ApplicationRevision)"> <Output TaskParameter="OutputVersion" PropertyName="_DeploymentManifestVersion"/> </FormatVersion> <FormatUrl InputUrl="$(_DeploymentUrl)"> <Output TaskParameter="OutputUrl" PropertyName="_DeploymentFormattedDeploymentUrl"/> </FormatUrl> <FormatUrl InputUrl="$(SupportUrl)"> <Output TaskParameter="OutputUrl" PropertyName="_DeploymentFormattedSupportUrl"/> </FormatUrl> </Target> <!-- ============================================================ _DeploymentGenerateTrustInfo Generates the application permission set for inclusion in the generated ClickOnce application manifest. ============================================================ --> <Target Name="_DeploymentGenerateTrustInfo" Condition="'$(TargetZone)'!=''" Inputs=" $(MSBuildAllProjects); @(_DeploymentBaseManifestWithTargetPath); " Outputs="@(_DeploymentIntermediateTrustInfoFile)"> <GenerateTrustInfo BaseManifest="@(_DeploymentBaseManifestWithTargetPath)" ApplicationDependencies="@(ReferencePath);@(ReferenceDependencyPaths)" ExcludedPermissions="$(ExcludedPermissions)" TargetZone="$(TargetZone)" TrustInfoFile="@(_DeploymentIntermediateTrustInfoFile)"> <Output TaskParameter="TrustInfoFile" ItemName="FileWrites"/> </GenerateTrustInfo> </Target> <!-- ============================================================ GenerateDeploymentManifest Generates a ClickOnce deployment manifest. An deployment manifest specifies declarative application identity and application update information. ============================================================ --> <Target Name="GenerateDeploymentManifest" DependsOnTargets="GenerateApplicationManifest" Inputs=" $(MSBuildAllProjects); @(ApplicationManifest) " Outputs="@(DeployManifest)"> <GenerateDeploymentManifest AssemblyName="$(_DeploymentDeployManifestIdentity)" AssemblyVersion="$(_DeploymentManifestVersion)" DeploymentUrl="$(_DeploymentFormattedDeploymentUrl)" Description="$(Description)" DisallowUrlActivation="$(DisallowUrlActivation)" EntryPoint="@(ApplicationManifest)" Install="$(Install)" MapFileExtensions="$(MapFileExtensions)" MaxTargetPath="$(MaxTargetPath)" MinimumRequiredVersion="$(_DeploymentBuiltMinimumRequiredVersion)" OutputManifest="@(DeployManifest)" Platform="$(PlatformTarget)" Product="$(ProductName)" Publisher="$(PublisherName)" SupportUrl="$(_DeploymentFormattedSupportUrl)" TargetCulture="$(TargetCulture)" TrustUrlParameters="$(TrustUrlParameters)" UpdateEnabled="$(UpdateEnabled)" UpdateInterval="$(_DeploymentBuiltUpdateInterval)" UpdateMode="$(UpdateMode)" UpdateUnit="$(_DeploymentBuiltUpdateIntervalUnits)" Condition="'$(GenerateClickOnceManifests)'=='true'"> <Output TaskParameter="OutputManifest" ItemName="FileWrites"/> </GenerateDeploymentManifest> </Target> <!-- *********************************************************************************************** *********************************************************************************************** PrepareForRun Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ PrepareForRun Copy the build outputs to the final directory if they have changed. ============================================================ --> <PropertyGroup> <PrepareForRunDependsOn> CopyFilesToOutputDirectory </PrepareForRunDependsOn> </PropertyGroup> <Target Name="PrepareForRun" DependsOnTargets="$(PrepareForRunDependsOn)"/> <!-- ============================================================ CopyFilesToOutputDirectory Copy all build outputs, satellites and other necessary files to the final directory. ============================================================ --> <Target Name="CopyFilesToOutputDirectory" DependsOnTargets=" ComputeIntermediateSatelliteAssemblies; _CopyFilesMarkedCopyLocal; _CopySourceItemsToOutputDirectory; _CopyAppConfigFile; _CopyManifestFiles; _CheckForCompileOutputs; _SGenCheckForOutputs"> <!-- Copy the build product (.dll or .exe). --> <Copy SourceFiles="@(IntermediateAssembly)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="MainAssembly"/> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <Message Importance="High" Text="$(MSBuildProjectName) -> @(MainAssembly->'%(FullPath)')" /> <!-- Copy the additional modules. --> <Copy SourceFiles="@(AddModules)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <!-- Copy the serialization assembly if it exists. --> <Copy SourceFiles="$(IntermediateOutputPath)$(_SGenDllName)" DestinationFiles="$(OutDir)$(_SGenDllName)" SkipUnchangedFiles="true" Condition="'$(_SGenDllCreated)'=='true'"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <!-- Copy the debug information file (.pdb), if any --> <Copy SourceFiles="$(IntermediateOutputPath)$(TargetName).pdb" DestinationFiles="$(OutDir)$(TargetName).pdb" SkipUnchangedFiles="true" Condition="'$(_DebugSymbolsProduced)'=='true'"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <!-- Copy the resulting XML documentation file, if any. --> <Copy SourceFiles="@(DocFileItem)" DestinationFiles="@(FinalDocFile)" SkipUnchangedFiles="true" Condition="'$(_DocumentationFileProduced)'=='true'"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <!-- Copy satellite assemblies. --> <Copy SourceFiles="@(IntermediateSatelliteAssembliesWithTargetPath)" DestinationFiles="@(IntermediateSatelliteAssembliesWithTargetPath->'$(OutDir)%(Culture)\$(TargetName).resources.dll')" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <!-- Copy COM reference wrappers, isolated COM references, COM references included by native (manifest) references, native (manifest) reference files themselves. --> <Copy SourceFiles="@(ReferenceComWrappersToCopyLocal); @(ResolvedIsolatedComModules); @(_DeploymentLooseManifestFile); @(NativeReferenceFile)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="FileWritesShareable"/> </Copy> </Target> <!-- ============================================================ _CopyFilesMarkedCopyLocal Copy references that are marked as "CopyLocal" and their dependencies, including .pdbs, .xmls and satellites. ============================================================ --> <Target Name="_CopyFilesMarkedCopyLocal"> <Copy SourceFiles="@(ReferenceCopyLocalPaths)" DestinationFiles="@(ReferenceCopyLocalPaths->'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)')" SkipUnchangedFiles="true"> <Output TaskParameter="DestinationFiles" ItemName="FileWritesShareable"/> </Copy> </Target> <!-- ============================================================ _CopySourceItemsToOutputDirectory ============================================================ --> <Target Name="_CopySourceItemsToOutputDirectory" DependsOnTargets=" GetCopyToOutputDirectoryItems; _CopyOutOfDateSourceItemsToOutputDirectory; _CopyOutOfDateSourceItemsToOutputDirectoryAlways"/> <!-- ============================================================ GetCopyToOutputDirectoryItems Get all project items that may need to be transferred to the output directory. This includes baggage items from transitively referenced projects. ============================================================ --> <Target Name="GetCopyToOutputDirectoryItems" Outputs="@(AllItemsFullPathWithTargetPath)" DependsOnTargets="AssignTargetPaths;_SplitProjectReferencesByFileExistence"> <!-- Get items from child projects first. --> <MSBuild Projects="@(_MSBuildProjectReferenceExistent)" Targets="GetCopyToOutputDirectoryItems" Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform)" Condition="'@(_MSBuildProjectReferenceExistent)'!=''"> <Output TaskParameter="TargetOutputs" ItemName="_AllChildProjectItemsWithTargetPath"/> </MSBuild> <!-- Target outputs must be full paths because they will be consumed by a different project. --> <CreateItem Include="@(_AllChildProjectItemsWithTargetPath->'%(FullPath)')" Condition="'%(_AllChildProjectItemsWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(_AllChildProjectItemsWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'" > <Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways" Condition="'%(_AllChildProjectItemsWithTargetPath.CopyToOutputDirectory)'=='Always'"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory" Condition="'%(_AllChildProjectItemsWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/> </CreateItem> <!-- Get items from this project last so that they will be copied last. --> <CreateItem Include="@(ContentWithTargetPath->'%(FullPath)')" Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(ContentWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'" > <Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways" Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='Always'"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory" Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/> </CreateItem> <CreateItem Include="@(_EmbeddedResourceWithTargetPath->'%(FullPath)')" Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'" > <Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways" Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='Always'"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory" Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/> </CreateItem> <CreateItem Include="@(Compile->'%(FullPath)')" Condition="'%(Compile.CopyToOutputDirectory)'=='Always' or '%(Compile.CopyToOutputDirectory)'=='PreserveNewest'"> <Output TaskParameter="Include" ItemName="_CompileItemsToCopy"/> </CreateItem> <AssignTargetPath Files="@(_CompileItemsToCopy)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="_CompileItemsToCopyWithTargetPath" /> </AssignTargetPath> <CreateItem Include="@(_CompileItemsToCopyWithTargetPath)"> <Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways" Condition="'%(_CompileItemsToCopyWithTargetPath.CopyToOutputDirectory)'=='Always'"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory" Condition="'%(_CompileItemsToCopyWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/> </CreateItem> <CreateItem Include="@(_NoneWithTargetPath->'%(FullPath)')" Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(_NoneWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'" > <Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways" Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='Always'"/> <Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory" Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/> </CreateItem> </Target> <!-- ============================================================ _CopyOutOfDateSourceItemsToOutputDirectory Copy files that have the CopyToOutputDirectory attribute set to 'PreserveNewest'. ============================================================ --> <Target Name="_CopyOutOfDateSourceItemsToOutputDirectory" Condition=" '@(_SourceItemsToCopyToOutputDirectory)' != '' " Inputs="@(_SourceItemsToCopyToOutputDirectory)" Outputs="@(_SourceItemsToCopyToOutputDirectory->'$(OutDir)%(TargetPath)')"> <!-- Not using SkipUnchangedFiles="true" because the application may want to change one of these files and not have an incremental build replace it. --> <Copy SourceFiles = "@(_SourceItemsToCopyToOutputDirectory)" DestinationFiles = "@(_SourceItemsToCopyToOutputDirectory->'$(OutDir)%(TargetPath)')"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> </Target> <!-- ============================================================ _CopyOutOfDateSourceItemsToOutputDirectoryAlways Copy files that have the CopyToOutputDirectory attribute set to 'Always'. ============================================================ --> <Target Name="_CopyOutOfDateSourceItemsToOutputDirectoryAlways" Condition=" '@(_SourceItemsToCopyToOutputDirectoryAlways)' != '' "> <!-- Not using SkipUnchangedFiles="true" because the application may want to change one of these files and not have an incremental build replace it. --> <Copy SourceFiles = "@(_SourceItemsToCopyToOutputDirectoryAlways)" DestinationFiles = "@(_SourceItemsToCopyToOutputDirectoryAlways->'$(OutDir)%(TargetPath)')"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> </Target> <!-- ============================================================ _CopyAppConfigFile Copy the application config file. ============================================================ --> <Target Name="_CopyAppConfigFile" Condition=" '@(AppConfigWithTargetPath)' != '' " Inputs="@(AppConfigWithTargetPath)" Outputs="@(AppConfigWithTargetPath->'$(OutDir)%(TargetPath)')"> <!-- Copy the application's .config file, if any. Not using SkipUnchangedFiles="true" because the application may want to change the app.config and not have an incremental build replace it. --> <Copy SourceFiles="@(AppConfigWithTargetPath)" DestinationFiles="@(AppConfigWithTargetPath->'$(OutDir)%(TargetPath)')"> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> </Target> <!-- ================================================================ _CopyManifestFiles ================================================================ Copy the built manifests (.exe.manifest, .application) to the final directory. --> <Target Name="_CopyManifestFiles" Condition=" '$(_DeploymentCopyApplicationManifest)'=='true' or '$(GenerateClickOnceManifests)'=='true' " DependsOnTargets="PrepareForBuild"> <Copy SourceFiles="@(ApplicationManifest)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" Condition="'$(GenerateClickOnceManifests)'=='true' or '$(_DeploymentCopyApplicationManifest)'=='true'"> <Output TaskParameter="DestinationFiles" ItemName="_DeploymentMainApplicationManifest"/> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <Message Importance="Normal" Condition="'$(_DeploymentCopyApplicationManifest)'=='true'" Text="$(MSBuildProjectName) -> @(_DeploymentMainApplicationManifest->'%(FullPath)')" /> <Copy SourceFiles="@(DeployManifest)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" Condition="'$(GenerateClickOnceManifests)'=='true'"> <Output TaskParameter="DestinationFiles" ItemName="_DeploymentMainDeployManifest"/> <Output TaskParameter="DestinationFiles" ItemName="FileWrites"/> </Copy> <Message Importance="Normal" Condition="'$(GenerateClickOnceManifests)'=='true'" Text="$(MSBuildProjectName) -> @(_DeploymentMainDeployManifest->'%(FullPath)')" /> </Target> <!-- ================================================================ _CheckForCompileOutputs Checks each file output from the main "Compile" target to make sure they really exist. If they do, then record them in the clean cache. ============================================================ --> <Target Name="_CheckForCompileOutputs"> <!--Record the main compile outputs.--> <CreateItem Include="@(IntermediateAssembly)" Condition="Exists('@(IntermediateAssembly)')"> <Output TaskParameter="Include" ItemName="FileWrites"/> </CreateItem> <!-- Record the .xml if one was produced. --> <CreateProperty Value="false" Condition="!Exists('@(DocFileItem)')"> <Output TaskParameter="Value" PropertyName="_DocumentationFileProduced" /> </CreateProperty> <CreateItem Include="@(DocFileItem)" Condition="'$(_DocumentationFileProduced)'=='true'"> <Output TaskParameter="Include" ItemName="FileWrites"/> </CreateItem> <!-- Record the .pdb if one was produced. --> <CreateProperty Value="false" Condition="!Exists('$(IntermediateOutputPath)$(TargetName).pdb')"> <Output TaskParameter="Value" PropertyName="_DebugSymbolsProduced" /> </CreateProperty> <CreateItem Include="$(IntermediateOutputPath)$(TargetName).pdb" Condition="'$(_DebugSymbolsProduced)'=='true'"> <Output TaskParameter="Include" ItemName="FileWrites"/> </CreateItem> </Target> <!-- ============================================================ _SGenCheckForOutputs Checks each file output from the "GenerateSerializationAssemblies" target to make sure they really exist. If they do, then record them in the clean cache. ============================================================ --> <Target Name="_SGenCheckForOutputs" Condition="'$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')" > <!-- Record the serializer .dll if one was produced.--> <CreateProperty Value="true" Condition="Exists('$(IntermediateOutputPath)$(_SGenDllName)')"> <Output PropertyName="_SGenDllCreated" TaskParameter="Value"/> </CreateProperty> <CreateItem Include="$(IntermediateOutputPath)$(_SGenDllName)" Condition="Exists('$(IntermediateOutputPath)$(_SGenDllName)')"> <Output ItemName="FileWrites" TaskParameter="Include"/> </CreateItem> </Target> <!-- *********************************************************************************************** *********************************************************************************************** UnmanagedRegistration Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ UnmanagedRegistration Registers the main assembly for COM interop. ============================================================ --> <PropertyGroup> <UnmanagedRegistrationDependsOn></UnmanagedRegistrationDependsOn> </PropertyGroup> <Target Name="UnmanagedRegistration" Condition="'$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library'" DependsOnTargets="$(UnmanagedRegistrationDependsOn)" > <RegisterAssembly Assemblies="@(_OutputPathItem->'%(FullPath)$(TargetFileName)')" TypeLibFiles="@(_OutputPathItem->'%(FullPath)$(TargetName).tlb')" AssemblyListFile="@(_UnmanagedRegistrationCache)" CreateCodeBase="true"> <Output TaskParameter="TypeLibFiles" ItemName="FileWrites"/> </RegisterAssembly> </Target> <!-- *********************************************************************************************** *********************************************************************************************** IncrementalClean Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ IncrementalClean Remove files that were produced in a prior build but weren't produced in the current build. The reason is that if, for example, the name of the .exe has changed we want to delete the old copy. Leave the Clean cache file containing only the files produced in the current build. ============================================================ --> <Target Name="IncrementalClean" DependsOnTargets="_CleanGetCurrentAndPriorFileWrites"> <!-- Subtract list of files produced in prior builds from list of files produced in this build. --> <CreateItem Include="@(_CleanPriorFileWrites)" Exclude="@(_CleanCurrentFileWrites)"> <Output TaskParameter="Include" ItemName="_CleanOrphanFileWrites"/> </CreateItem> <!-- Find all files in the final output directory. --> <FindUnderPath Path="$(OutDir)" Files="@(_CleanOrphanFileWrites)"> <Output TaskParameter="InPath" ItemName="_CleanOrphanFileWritesInOutput"/> </FindUnderPath> <!-- Find all files in the intermediate output directory. --> <FindUnderPath Path="$(IntermediateOutputPath)" Files="@(_CleanOrphanFileWrites)"> <Output TaskParameter="InPath" ItemName="_CleanOrphanFileWritesInIntermediate"/> </FindUnderPath> <!-- Delete the orphaned files. --> <Delete Files="@(_CleanOrphanFileWritesInIntermediate);@(_CleanOrphanFileWritesInOutput)" TreatErrorsAsWarnings="true"> <Output TaskParameter="DeletedFiles" ItemName="_CleanOrphanFilesDeleted"/> </Delete> <!-- Create a list of everything that wasn't deleted or was outside the current final output and intermediate output directories. --> <CreateItem Include="@(_CleanPriorFileWrites);@(_CleanCurrentFileWrites)" Exclude="@(_CleanOrphanFilesDeleted)"> <Output TaskParameter="Include" ItemName="_CleanRemainingFileWritesAfterIncrementalClean"/> </CreateItem> <!-- Remove duplicates. --> <RemoveDuplicates Inputs="@(_CleanRemainingFileWritesAfterIncrementalClean)"> <Output TaskParameter="Filtered" ItemName="_CleanUniqueRemainingFileWritesAfterIncrementalClean"/> </RemoveDuplicates> <!-- Make sure the directory exists. --> <MakeDir Directories="$(BaseIntermediateOutputPath)"/> <!-- Write new list of current files back to disk, replacing the existing list.--> <WriteLinesToFile File="$(BaseIntermediateOutputPath)$(CleanFile)" Lines="@(_CleanUniqueRemainingFileWritesAfterIncrementalClean)" Overwrite="true"/> </Target> <!-- ============================================================ _CleanGetCurrentAndPriorFileWrites Get the list of files built in the current build and in prior builds. ============================================================ --> <Target Name="_CleanGetCurrentAndPriorFileWrites" DependsOnTargets="_CheckForCompileOutputs;_SGenCheckForOutputs"> <!-- Read the list of files produced by a prior builds from disk. --> <ReadLinesFromFile File="$(BaseIntermediateOutputPath)$(CleanFile)"> <Output TaskParameter="Lines" ItemName="_CleanUnfilteredPriorFileWrites"/> </ReadLinesFromFile> <!-- Convert the list of references to the absolute paths so we can make valid comparisons across two lists --> <ConvertToAbsolutePath Paths="@(_ResolveAssemblyReferenceResolvedFiles)"> <Output TaskParameter="AbsolutePaths" ItemName="_ResolveAssemblyReferenceResolvedFilesAbsolute"/> </ConvertToAbsolutePath> <!-- Subtract any resolved assembly files from *prior* file writes because deleting these would break subsequent builds because the assemblies would be unresolvable. --> <CreateItem Include="@(_CleanUnfilteredPriorFileWrites)" Exclude="@(_ResolveAssemblyReferenceResolvedFilesAbsolute)"> <Output TaskParameter="Include" ItemName="_CleanPriorFileWrites"/> </CreateItem> <!-- Of shareable files, keep only those that are in the project's directory. We never clean shareable files outside of the project directory because the build may be to a common output directory and other projects may need them. Only subtract the outputs from ResolveAssemblyReferences target because that's the only "Resolve" target that tries to resolve assemblies directly from the output directory. --> <FindUnderPath Path="$(MSBuildProjectDirectory)" Files="@(FileWritesShareable)" UpdateToAbsolutePaths="true"> <Output TaskParameter="InPath" ItemName="FileWrites"/> </FindUnderPath> <!-- Find all files in the final output directory. --> <FindUnderPath Path="$(OutDir)" Files="@(FileWrites)" UpdateToAbsolutePaths="true"> <Output TaskParameter="InPath" ItemName="_CleanCurrentFileWritesInOutput"/> </FindUnderPath> <!-- Find all files in the intermediate output directory. --> <FindUnderPath Path="$(IntermediateOutputPath)" Files="@(FileWrites)" UpdateToAbsolutePaths="true"> <Output TaskParameter="InPath" ItemName="_CleanCurrentFileWritesInIntermediate"/> </FindUnderPath> <!-- Subtract any resolved assembly files from *current* file writes because deleting these would break subsequent builds because the assemblies would be unresolvable. Only subtract the outputs from ResolveAssemblyReferences target because that's the only "Resolve" target that tries to resolve assemblies directly from the output directory. --> <CreateItem Include="@(_CleanCurrentFileWritesInOutput);@(_CleanCurrentFileWritesInIntermediate)" Exclude="@(_ResolveAssemblyReferenceResolvedFilesAbsolute)"> <Output TaskParameter="Include" ItemName="_CleanCurrentFileWritesWithNoReferences"/> </CreateItem> <!-- Remove duplicates from files produced in this build. --> <RemoveDuplicates Inputs="@(_CleanCurrentFileWritesWithNoReferences)" > <Output TaskParameter="Filtered" ItemName="_CleanCurrentFileWrites"/> </RemoveDuplicates> </Target> <!-- *********************************************************************************************** *********************************************************************************************** Clean Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ Clean Delete all intermediate and final build outputs. ============================================================ --> <PropertyGroup> <CleanDependsOn> BeforeClean; CleanReferencedProjects; UnmanagedUnregistration; CoreClean; CleanPublishFolder; AfterClean </CleanDependsOn> </PropertyGroup> <Target Name="Clean" Condition=" '$(_InvalidConfigurationWarning)' != 'true' " DependsOnTargets="$(CleanDependsOn)" /> <!-- ============================================================ BeforeClean Redefine this target in your project in order to run tasks just before Clean. ============================================================ --> <Target Name="BeforeClean"/> <!-- ============================================================ AfterClean Redefine this target in your project in order to run tasks just after Clean. ============================================================ --> <Target Name="AfterClean"/> <!-- ============================================================ CleanReferencedProjects Call Clean target on all Referenced Projects. ============================================================ --> <Target Name="CleanReferencedProjects" DependsOnTargets="SplitProjectReferencesByType; _SplitProjectReferencesByFileExistence"> <!-- When building the project directly from the command-line, clean those referenced projects that exist on disk. For IDE builds and command-line .SLN builds, the solution build manager takes care of this. --> <MSBuild Projects="@(_MSBuildProjectReferenceExistent)" Targets="Clean" Condition="'$(BuildingInsideVisualStudio)'!='true' and '$(BuildingSolutionFile)'!='true' and '@(_MSBuildProjectReferenceExistent)'!=''" /> </Target> <!-- ============================================================ CoreClean ============================================================ --> <PropertyGroup> <CoreCleanDependsOn></CoreCleanDependsOn> </PropertyGroup> <Target Name="CoreClean" DependsOnTargets="$(CoreCleanDependsOn)"> <!-- Read in list of files that were written to disk in past builds. --> <ReadLinesFromFile File="$(BaseIntermediateOutputPath)$(CleanFile)"> <Output TaskParameter="Lines" ItemName="_CleanPriorFileWrites"/> </ReadLinesFromFile> <!-- Find all files in the final output directory. --> <FindUnderPath Path="$(OutDir)" Files="@(_CleanPriorFileWrites)"> <Output TaskParameter="InPath" ItemName="_CleanPriorFileWritesInOutput"/> </FindUnderPath> <!-- Find all files in the intermediate output directory. --> <FindUnderPath Path="$(IntermediateOutputPath)" Files="@(_CleanPriorFileWrites)"> <Output TaskParameter="InPath" ItemName="_CleanPriorFileWritesInIntermediate"/> </FindUnderPath> <!-- Delete those files. --> <Delete Files="@(_CleanPriorFileWritesInOutput);@(_CleanPriorFileWritesInIntermediate)" TreatErrorsAsWarnings="true"> <Output TaskParameter="DeletedFiles" ItemName="_CleanPriorFileWritesDeleted"/> </Delete> <!-- Create a list of everything that wasn't deleted. --> <CreateItem Include="@(_CleanPriorFileWrites)" Exclude="@(_CleanPriorFileWritesDeleted)"> <Output TaskParameter="Include" ItemName="_CleanRemainingFileWritesAfterClean"/> </CreateItem> <!-- Remove duplicates. --> <RemoveDuplicates Inputs="@(_CleanRemainingFileWritesAfterClean)"> <Output TaskParameter="Filtered" ItemName="_CleanUniqueRemainingFileWrites"/> </RemoveDuplicates> <!-- Make sure the directory exists. --> <MakeDir Directories="$(BaseIntermediateOutputPath)"/> <!-- Write new list of current files back to disk. --> <WriteLinesToFile File="$(BaseIntermediateOutputPath)$(CleanFile)" Lines="@(_CleanUniqueRemainingFileWrites)" Overwrite="true" /> </Target> <!-- ============================================================ _CleanRecordFileWrites Save the list of all files written to disk so that it can be used for "Clean" later. Files written in prior builds are not removed from Clean cache. ============================================================ --> <Target Name="_CleanRecordFileWrites" DependsOnTargets="_CleanGetCurrentAndPriorFileWrites"> <!-- Merge list of files from prior builds with the current build and then remove duplicates. --> <RemoveDuplicates Inputs="@(_CleanPriorFileWrites);@(_CleanCurrentFileWrites)"> <Output TaskParameter="Filtered" ItemName="_CleanUniqueFileWrites"/> </RemoveDuplicates> <!-- Make sure the directory exists. --> <MakeDir Directories="$(BaseIntermediateOutputPath)"/> <!-- Write merged file list back to disk, replacing existing contents. --> <WriteLinesToFile File="$(BaseIntermediateOutputPath)$(CleanFile)" Lines="@(_CleanUniqueFileWrites)" Overwrite="true" /> </Target> <!-- ============================================================ CleanPublishFolder ============================================================ --> <Target Name="CleanPublishFolder"> <RemoveDir Directories="$(PublishDir)" Condition="'$(PublishDir)'=='$(OutputPath)$(AssemblyName).publish\' and Exists('$(PublishDir)')"/> </Target> <!-- *********************************************************************************************** *********************************************************************************************** PostBuildEvent Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ PostBuildEvent Run the post-build event. This step is driven by two parameters: (1) The $(RunPostBuildEvent) property is set by the user through the IDE and can be one of four values. - OnBuildSuccess: In this case, every step of the build must succeed for the post-build step to run. - <Blank>: This is the same as OnBuildSuccess. - OnOutputUpdated: In this case, the post-build step will run only if the main output assembly was actually updated. - Always: The post-build step is always run. (2) The $(_AssemblyTimestampBeforeCompile) and $(_AssemblyTimestampAfterCompile) values are set by the _TimeStampBeforeCompile and _TimeStampAfterCompile targets. If the assembly was actually rebuilt during this build, then the two values will be different. ============================================================ --> <PropertyGroup> <PostBuildEventDependsOn></PostBuildEventDependsOn> </PropertyGroup> <Target Name="PostBuildEvent" Condition= " '$(PostBuildEvent)'!='' and ( '$(RunPostBuildEvent)'!='OnOutputUpdated' or '$(_AssemblyTimestampBeforeCompile)'!='$(_AssemblyTimestampAfterCompile)' ) " DependsOnTargets="$(PostBuildEventDependsOn)"> <Exec WorkingDirectory="$(OutDir)" Command="$(PostBuildEvent)" /> </Target> <!-- *********************************************************************************************** *********************************************************************************************** Publish Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ Publish This target is only called when doing ClickOnce publishing outside the IDE, which implicitly builds before publishing. ============================================================ --> <PropertyGroup> <PublishDependsOn Condition="'$(PublishableProject)'=='true'"> SetGenerateManifests; Build; PublishOnly </PublishDependsOn> <PublishDependsOn Condition="'$(PublishableProject)'!='true'"> _DeploymentUnpublishable </PublishDependsOn> </PropertyGroup> <Target Name="Publish" DependsOnTargets="$(PublishDependsOn)"/> <!-- ============================================================ _DeploymentUnpublishable This target is used to block an attempt to ClickOnce publish a non-publishable project, such as a ClassLibrary, when building outside the IDE. ============================================================ --> <Target Name="_DeploymentUnpublishable"> <Message Text="Skipping unpublishable project."/> </Target> <!-- ============================================================ SetGenerateManifests This target simply assures the GenerateClickOnceManifests property is set whenever the publish target is invoked. ============================================================ --> <Target Name="SetGenerateManifests"> <Error Condition="'$(OutputType)'!='winexe' and '$(OutputType)'!='exe'" Text="Publish is only valid for 'Windows Application' or 'Console Application' project types."/> <Error Condition="'$(ManifestCertificateThumbprint)'=='' and '$(ManifestKeyFile)'==''" Text="A signing key is required in order to publish this project. Publishing from Visual Studio 2005 will automatically configure a signing key for this project."/> <CreateProperty Value="true"> <Output TaskParameter="Value" PropertyName="GenerateClickOnceManifests" /> </CreateProperty> </Target> <!-- ============================================================ PublishOnly The "PublishOnly" target is intended for ClickOnce publishing inside the IDE, where the build has already been done by the BuildManager. ============================================================ --> <PropertyGroup> <PublishOnlyDependsOn> SetGenerateManifests; PublishBuild; BeforePublish; GenerateManifests; CleanPublishFolder; _CopyFilesToPublishFolder; _DeploymentGenerateBootstrapper; ResolveKeySource; _DeploymentSignClickOnceDeployment; AfterPublish </PublishOnlyDependsOn> </PropertyGroup> <Target Name="PublishOnly" DependsOnTargets="$(PublishOnlyDependsOn)"/> <!-- ============================================================ BeforePublish Redefine this target in your project in order to run tasks just before Publish. ============================================================ --> <Target Name="BeforePublish"/> <!-- ============================================================ AfterPublish Redefine this target in your project in order to run tasks just after Publish. ============================================================ --> <Target Name="AfterPublish"/> <!-- ============================================================ PublishBuild Defines the set of targets that publishing is directly dependent on. ============================================================ --> <PropertyGroup> <PublishBuildDependsOn> BuildOnlySettings; PrepareForBuild; ResolveReferences; PrepareResources; ResolveKeySource; GenerateSerializationAssemblies; CreateSatelliteAssemblies; </PublishBuildDependsOn> </PropertyGroup> <Target Name="PublishBuild" DependsOnTargets="$(PublishBuildDependsOn)"/> <!-- ============================================================ _CopyFilesToPublishFolder ============================================================ --> <Target Name="_CopyFilesToPublishFolder"> <!-- Compute name of application folder, which includes the assembly name plus formatted application version. The application version is formatted to use "_" in place of "." chars (i.e. "1_0_0_0" instead of "1.0.0.0"). This is done because some servers misinterpret "." as a file extension. --> <FormatVersion Version="$(ApplicationVersion)" Revision="$(ApplicationRevision)" FormatType="Path"> <Output TaskParameter="OutputVersion" PropertyName="_DeploymentApplicationVersionFragment"/> </FormatVersion> <CreateProperty Value="$(AssemblyName)_$(_DeploymentApplicationVersionFragment)"> <Output TaskParameter="Value" PropertyName="_DeploymentApplicationFolderName" /> </CreateProperty> <CreateProperty Value="$(PublishDir)$(_DeploymentApplicationFolderName)\"> <Output TaskParameter="Value" PropertyName="_DeploymentApplicationDir" /> </CreateProperty> <!-- Copy files to publish folder --> <Copy SourceFiles= "@(_ApplicationManifestFinal); @(_DeploymentManifestEntryPoint); @(_DeploymentManifestFiles); @(ReferenceComWrappersToCopyLocal); @(ResolvedIsolatedComModules); @(_DeploymentLooseManifestFile)" DestinationFiles= "@(_ApplicationManifestFinal->'$(_DeploymentApplicationDir)%(TargetPath)'); @(_DeploymentManifestEntryPoint->'$(_DeploymentApplicationDir)%(TargetPath)$(_DeploymentFileMappingExtension)'); @(_DeploymentManifestFiles->'$(_DeploymentApplicationDir)%(TargetPath)$(_DeploymentFileMappingExtension)'); @(ReferenceComWrappersToCopyLocal->'$(_DeploymentApplicationDir)%(FileName)%(Extension)$(_DeploymentFileMappingExtension)'); @(ResolvedIsolatedComModules->'$(_DeploymentApplicationDir)%(FileName)%(Extension)$(_DeploymentFileMappingExtension)'); @(_DeploymentLooseManifestFile->'$(_DeploymentApplicationDir)%(FileName)%(Extension)$(_DeploymentFileMappingExtension)')" SkipUnchangedFiles="true"/> <Copy SourceFiles="@(_DeploymentManifestDependencies)" DestinationFiles="@(_DeploymentManifestDependencies->'$(_DeploymentApplicationDir)%(TargetPath)$(_DeploymentFileMappingExtension)')" SkipUnchangedFiles="true" Condition="'%(_DeploymentManifestDependencies.DependencyType)'=='Install'"/> <Copy SourceFiles="@(_ReferenceScatterPaths)" DestinationFiles="@(_ReferenceScatterPaths->'$(_DeploymentApplicationDir)%(Filename)%(Extension)$(_DeploymentFileMappingExtension)')" SkipUnchangedFiles="true"/> <FormatUrl InputUrl="$(_DeploymentApplicationUrl)"> <Output TaskParameter="OutputUrl" PropertyName="_DeploymentFormattedApplicationUrl"/> </FormatUrl> <FormatUrl InputUrl="$(_DeploymentComponentsUrl)"> <Output TaskParameter="OutputUrl" PropertyName="_DeploymentFormattedComponentsUrl"/> </FormatUrl> </Target> <!-- ============================================================ _DeploymentGenerateBootstrapper ============================================================ --> <Target Name="_DeploymentGenerateBootstrapper"> <!-- Build setup.exe bootstrapper and copy referenced packages --> <GenerateBootstrapper ApplicationFile="$(TargetDeployManifestFileName)" ApplicationName="$(AssemblyName)" ApplicationUrl="$(_DeploymentFormattedApplicationUrl)" BootstrapperItems="@(BootstrapperPackage)" ComponentsLocation="$(BootstrapperComponentsLocation)" ComponentsUrl="$(_DeploymentFormattedComponentsUrl)" Culture="$(TargetCulture)" FallbackCulture="$(FallbackCulture)" OutputPath="$(PublishDir)" SupportUrl="$(_DeploymentFormattedSupportUrl)" Path="$(GenerateBootstrapperSdkPath)" Condition="'$(BootstrapperEnabled)'=='true'"/> </Target> <!-- ============================================================ _DeploymentSignClickOnceDeployment ============================================================ --> <Target Name="_DeploymentSignClickOnceDeployment"> <!-- Sign manifests and the bootstrapper --> <SignFile CertificateThumbprint="$(_DeploymentResolvedManifestCertificateThumbprint)" TimestampUrl="$(ManifestTimestampUrl)" SigningTarget="$(_DeploymentApplicationDir)$(_DeploymentTargetApplicationManifestFileName)"/> <!-- Update entry point path in deploy manifest --> <UpdateManifest ApplicationPath="$(_DeploymentApplicationFolderName)\$(_DeploymentTargetApplicationManifestFileName)" ApplicationManifest="$(_DeploymentApplicationDir)$(_DeploymentTargetApplicationManifestFileName)" InputManifest="$(OutDir)$(TargetDeployManifestFileName)" OutputManifest="$(PublishDir)$(TargetDeployManifestFileName)"> <Output TaskParameter="OutputManifest" ItemName="PublishedDeployManifest"/> </UpdateManifest> <SignFile CertificateThumbprint="$(_DeploymentResolvedManifestCertificateThumbprint)" TimestampUrl="$(ManifestTimestampUrl)" SigningTarget="$(PublishDir)$(TargetDeployManifestFileName)"/> <SignFile CertificateThumbprint="$(_DeploymentResolvedManifestCertificateThumbprint)" TimestampUrl="$(ManifestTimestampUrl)" SigningTarget="$(PublishDir)\setup.exe" Condition="'$(BootstrapperEnabled)'=='true'"/> </Target> <!-- *********************************************************************************************** *********************************************************************************************** AllProjectOutputGroups Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ AllProjectOutputGroups The targets below drive output groups, which provide generic information about a project's inputs (e.g., content files, compilation sources, etc.) and built outputs (e.g., built EXE/DLL, PDB, XML documentation files, etc.) Each target may produce two kinds of items: outputs and dependencies. Outputs are items from the current project; dependencies are items that are brought into the current project as a result of referencing other projects or components. For both outputs and dependencies, the Include attribute specifies the location of the output/dependency; it must be a full path. Any number of additional attributes may be placed on an output/dependency item. ============================================================ --> <Target Name="AllProjectOutputGroups" DependsOnTargets=" BuiltProjectOutputGroup; DebugSymbolsProjectOutputGroup; DocumentationProjectOutputGroup; SatelliteDllsProjectOutputGroup; SourceFilesProjectOutputGroup; ContentFilesProjectOutputGroup; SGenFilesOutputGroup"/> <!-- This is the key output for the BuiltProjectOutputGroup and is meant to be read directly from the IDE. Reading an item is faster than invoking a target. --> <ItemGroup> <BuiltProjectOutputGroupKeyOutput Include="@(IntermediateAssembly->'%(FullPath)')"> <IsKeyOutput>true</IsKeyOutput> <FinalOutputPath>$(TargetPath)</FinalOutputPath> <TargetPath>$(TargetFileName)</TargetPath> <COM2REG Condition="'$(RegisterForComInterop)'=='true' and '$(OutputType)'=='library'">true</COM2REG> </BuiltProjectOutputGroupKeyOutput> </ItemGroup> <!-- ============================================================ BuiltProjectOutputGroup ============================================================ --> <PropertyGroup> <BuiltProjectOutputGroupDependsOn>PrepareForBuild</BuiltProjectOutputGroupDependsOn> <AddAppConfigToBuildOutputs Condition="('$(AddAppConfigToBuildOutputs)'=='') and ('$(OutputType)'!='library')">true</AddAppConfigToBuildOutputs> </PropertyGroup> <Target Name="BuiltProjectOutputGroup" Outputs="@(BuiltProjectOutputGroupOutput)" DependsOnTargets="$(BuiltProjectOutputGroupDependsOn)"> <CreateItem Include="@(BuiltProjectOutputGroupKeyOutput)"> <Output TaskParameter="Include" ItemName="_BuiltProjectOutputGroupOutputIntermediate"/> </CreateItem> <!-- This item represents the app.config file --> <CreateItem Include="$(AppConfig)" AdditionalMetadata="FinalOutputPath=$(TargetDir)$(TargetFileName).config; TargetPath=$(TargetFileName).config" Condition="'$(AddAppConfigToBuildOutputs)'=='true'"> <Output TaskParameter="Include" ItemName="_BuiltProjectOutputGroupOutputIntermediate"/> </CreateItem> <CreateItem Include="@(COMReference)" Condition=" '%(COMReference.Isolated)' == 'true' "> <Output TaskParameter="Include" ItemName="_IsolatedComReference"/> </CreateItem> <CreateItem Include="@(COMFileReference)" Condition=" '%(COMFileReference.Isolated)' == 'true' "> <Output TaskParameter="Include" ItemName="_IsolatedComReference"/> </CreateItem> <!-- This item represents the native manifest, example: WindowsApplication1.exe.manifest or Native.ClassLibrary1.manifest --> <CreateItem Include="$(OutDir)$(_DeploymentTargetApplicationManifestFileName)" AdditionalMetadata="TargetPath=$(_DeploymentTargetApplicationManifestFileName)" Condition="'@(NativeReference)'!='' or '@(_IsolatedComReference)'!=''"> <Output TaskParameter="Include" ItemName="_BuiltProjectOutputGroupOutputIntermediate"/> </CreateItem> <!-- Convert intermediate items into final items; this way we can get the full path for each item --> <CreateItem Include="@(_BuiltProjectOutputGroupOutputIntermediate->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="BuiltProjectOutputGroupOutput"/> </CreateItem> </Target> <!-- ============================================================ DebugSymbolsProjectOutputGroup This target performs population of the Debug Symbols project output group. ============================================================ --> <PropertyGroup> <DebugSymbolsProjectOutputGroupDependsOn></DebugSymbolsProjectOutputGroupDependsOn> </PropertyGroup> <ItemGroup Condition="'$(_DebugSymbolsProduced)'!='false'"> <DebugSymbolsProjectOutputGroupOutput Include="@(_IntermediateOutputPathItem->'%(FullPath)$(TargetName).pdb')"> <FinalOutputPath>@(_OutputPathItem->'%(FullPath)$(TargetName).pdb')</FinalOutputPath> <TargetPath>$(TargetName).pdb</TargetPath> </DebugSymbolsProjectOutputGroupOutput> </ItemGroup> <Target Name="DebugSymbolsProjectOutputGroup" Outputs="@(DebugSymbolsProjectOutputGroupOutput)" DependsOnTargets="$(DebugSymbolsProjectOutputGroupDependsOn)"/> <!-- ============================================================ DocumentationProjectOutputGroup This target performs population of the Documentation project output group. ============================================================ --> <PropertyGroup> <DocumentationProjectOutputGroupDependsOn></DocumentationProjectOutputGroupDependsOn> </PropertyGroup> <ItemGroup Condition="'$(DocumentationFile)'!=''"> <DocumentationProjectOutputGroupOutput Include="@(DocFileItem->'%(FullPath)')"> <FinalOutputPath>@(FinalDocFile)</FinalOutputPath> <IsKeyOutput>true</IsKeyOutput> <TargetPath>@(DocFileItem->'%(Filename)%(Extension)')</TargetPath> </DocumentationProjectOutputGroupOutput> </ItemGroup> <Target Name="DocumentationProjectOutputGroup" Outputs="@(DocumentationProjectOutputGroupOutput)" DependsOnTargets="$(DocumentationProjectOutputGroupDependsOn)"/> <!-- ============================================================ SatelliteDllsProjectOutputGroup This target performs population of the Satellite Files project output group. ============================================================ --> <PropertyGroup> <SatelliteDllsProjectOutputGroupDependsOn>PrepareForBuild;PrepareResourceNames</SatelliteDllsProjectOutputGroupDependsOn> </PropertyGroup> <Target Name="SatelliteDllsProjectOutputGroup" Outputs="@(SatelliteDllsProjectOutputGroupOutput)" DependsOnTargets="$(SatelliteDllsProjectOutputGroupDependsOn)"> <CreateItem Include="$(IntermediateOutputPath)%(ResxWithCulture.Culture)\$(TargetName).resources.dll" AdditionalMetadata="TargetPath=%(ResxWithCulture.Culture)\$(TargetName).resources.dll" Condition="'@(ResxWithCulture)' != ''"> <Output TaskParameter="Include" ItemName="SatelliteDllsProjectOutputGroupOutputIntermediate"/> </CreateItem> <CreateItem Include="$(IntermediateOutputPath)%(NonResxWithCulture.Culture)\$(TargetName).resources.dll" AdditionalMetadata="TargetPath=%(NonResxWithCulture.Culture)\$(TargetName).resources.dll" Condition="'@(NonResxWithCulture)' != ''"> <Output TaskParameter="Include" ItemName="SatelliteDllsProjectOutputGroupOutputIntermediate"/> </CreateItem> <!-- Convert intermediate items into final items; this way we can get the full path for each item. --> <CreateItem Include="@(SatelliteDllsProjectOutputGroupOutputIntermediate->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="SatelliteDllsProjectOutputGroupOutput"/> </CreateItem> </Target> <!-- ============================================================ SourceFilesProjectOutputGroup This target performs population of the Source Files project output group. Source files are items in the project whose type is "Compile" and "EmbeddedResource". ============================================================ --> <PropertyGroup> <SourceFilesProjectOutputGroupDependsOn>PrepareForBuild;AssignTargetPaths</SourceFilesProjectOutputGroupDependsOn> </PropertyGroup> <Target Name="SourceFilesProjectOutputGroup" Outputs="@(SourceFilesProjectOutputGroupOutput)" DependsOnTargets="$(SourceFilesProjectOutputGroupDependsOn)"> <AssignTargetPath Files="@(Compile)" RootFolder="$(MSBuildProjectDirectory)"> <Output TaskParameter="AssignedFiles" ItemName="_CompileWithTargetPath" /> </AssignTargetPath> <!-- First we deal with Compile, EmbeddedResource and AppConfig --> <CreateItem Include="@(_CompileWithTargetPath->'%(FullPath)');@(_EmbeddedResourceWithTargetPath->'%(FullPath)');@(AppConfigWithTargetPath->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="SourceFilesProjectOutputGroupOutput"/> </CreateItem> <!-- Include the project file --> <CreateItem Include="$(MSBuildProjectFullPath)" AdditionalMetadata="TargetPath=$(ProjectFileName)"> <Output TaskParameter="Include" ItemName="SourceFilesProjectOutputGroupOutput"/> </CreateItem> </Target> <!-- ============================================================ ContentFilesProjectOutputGroup This target performs population of the Content Files project output group. Content files are items in the project whose type is "Content". ============================================================ --> <PropertyGroup> <ContentFilesProjectOutputGroupDependsOn>PrepareForBuild;AssignTargetPaths</ContentFilesProjectOutputGroupDependsOn> </PropertyGroup> <Target Name="ContentFilesProjectOutputGroup" Outputs="@(ContentFilesProjectOutputGroupOutput)" DependsOnTargets="$(ContentFilesProjectOutputGroupDependsOn)"> <!-- Convert items into final items; this way we can get the full path for each item. --> <CreateItem Include="@(ContentWithTargetPath->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="ContentFilesProjectOutputGroupOutput"/> </CreateItem> </Target> <!-- ============================================================ SGenFilesOutputGroup This target performs population of the GenerateSerializationAssemblies Files project output group. GenerateSerializationAssemblies files are those generated by the GenerateSerializationAssemblies target and task. ============================================================ --> <PropertyGroup> <SGenFilesOutputGroupDependsOn></SGenFilesOutputGroupDependsOn> </PropertyGroup> <ItemGroup Condition="'$(_SGenGenerateSerializationAssembliesConfig)' == 'On' or ('@(WebReferenceUrl)'!='' and '$(_SGenGenerateSerializationAssembliesConfig)' == 'Auto')"> <SGenFilesOutputGroupOutput Include="@(_OutputPathItem->'%(FullPath)$(_SGenDllName)')"> <FinalOutputPath>@(_OutputPathItem->'%(FullPath)$(_SGenDllName)')</FinalOutputPath> <TargetPath>$(_SGenDllName)</TargetPath> </SGenFilesOutputGroupOutput> </ItemGroup> <Target Name="SGenFilesOutputGroup" Outputs="@(SGenFilesOutputGroupOutput)" DependsOnTargets="$(SGenFilesOutputGroupDependsOn)"/> <!-- *********************************************************************************************** *********************************************************************************************** AllProjectOutputGroupsDependencies Section *********************************************************************************************** *********************************************************************************************** --> <!-- ============================================================ AllProjectOutputGroupsDependencies ============================================================ --> <Target Name="AllProjectOutputGroupsDependencies" DependsOnTargets=" BuiltProjectOutputGroupDependencies; DebugSymbolsProjectOutputGroupDependencies; SatelliteDllsProjectOutputGroupDependencies; DocumentationProjectOutputGroupDependencies; SGenFilesOutputGroupDependencies"/> <!-- ============================================================ BuiltProjectOutputGroupDependencies This target performs population of the Built project output group dependencies. ============================================================ --> <Target Name="BuiltProjectOutputGroupDependencies" DependsOnTargets="BuildOnlySettings;PrepareForBuild;AssignTargetPaths;ResolveReferences" Outputs="@(BuiltProjectOutputGroupDependency)"> <CreateItem Include=" @(ReferencePath->'%(FullPath)'); @(ReferenceDependencyPaths->'%(FullPath)'); @(NativeReferenceFile->'%(FullPath)'); @(_DeploymentLooseManifestFile->'%(FullPath)'); @(ResolvedIsolatedComModules->'%(FullPath)') "> <Output TaskParameter="Include" ItemName="BuiltProjectOutputGroupDependency"/> </CreateItem> </Target> <!-- ============================================================ DebugSymbolsProjectOutputGroupDependencies This target performs population of the dependencies for the debug symbols project output group. ============================================================ --> <Target Name="DebugSymbolsProjectOutputGroupDependencies" Condition="'$(DebugSymbols)'!='false'" DependsOnTargets="BuildOnlySettings;PrepareForBuild;AssignTargetPaths;ResolveReferences" Outputs="@(DebugSymbolsProjectOutputGroupDependency)"> <!-- This item represents dependent PDB's --> <CreateItem Include="@(_ReferenceRelatedPaths->'%(FullPath)')" Condition="'%(Extension)' == '.pdb'"> <Output TaskParameter="Include" ItemName="DebugSymbolsProjectOutputGroupDependency"/> </CreateItem> </Target> <!-- ============================================================ SatelliteDllsProjectOutputGroupDependencies This target performs population of the dependencies for the satellite files project output group. ============================================================ --> <Target Name="SatelliteDllsProjectOutputGroupDependencies" DependsOnTargets="BuildOnlySettings;PrepareForBuild;AssignTargetPaths;ResolveReferences" Outputs="@(SatelliteDllsProjectOutputGroupDependency)"> <!-- This item represents dependent satellites --> <CreateItem Include="@(ReferenceSatellitePaths->'%(FullPath)')"> <Output TaskParameter="Include" ItemName="SatelliteDllsProjectOutputGroupDependency"/> </CreateItem> </Target> <!-- ============================================================ DocumentationProjectOutputGroupDependencies This target performs population of the dependencies for the documentation project output group. ============================================================ --> <Target Name="DocumentationProjectOutputGroupDependencies" Condition="'$(DocumentationFile)'!=''" DependsOnTargets="BuildOnlySettings;PrepareForBuild;AssignTargetPaths;ResolveReferences" Outputs="@(DocumentationProjectOutputGroupDependency)"> <!-- This item represents dependent XMLs --> <CreateItem Include="@(_ReferenceRelatedPaths->'%(FullPath)')" Condition="'%(Extension)' == '.xml'"> <Output TaskParameter="Include" ItemName="DocumentationProjectOutputGroupDependency"/> </CreateItem> </Target> <!-- ============================================================ SGenFilesOutputGroupDependencies This target performs population of the dependencies for the GenerateSerializationAssemblies project output group. ============================================================ --> <Target Name="SGenFilesOutputGroupDependencies" DependsOnTargets="BuildOnlySettings;PrepareForBuild;AssignTargetPaths;ResolveReferences"> <!-- This item represents sgen xml serializer dll's --> <CreateItem Include="@(_ReferenceSerializationAssemblyPaths->'%(FullPath)')" Condition="'%(Extension)' == '.dll'"> <Output TaskParameter="Include" ItemName="SGenFilesOutputGroupDependency"/> </CreateItem> </Target> <PropertyGroup> <CodeAnalysisTargets Condition="'$(CodeAnalysisTargets)'==''">$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v8.0\CodeAnalysis\Microsoft.CodeAnalysis.targets</CodeAnalysisTargets> </PropertyGroup> <Import Project="$(CodeAnalysisTargets)" Condition="Exists('$(CodeAnalysisTargets)')"/> <PropertyGroup> <RunCodeAnalysisTarget Condition="'$(RunCodeAnalysis)'=='true'"> RunCodeAnalysis </RunCodeAnalysisTarget> </PropertyGroup> <Import Project="$(ReportingServicesTargets)" Condition="Exists('$(ReportingServicesTargets)')"/> <Import Project="$(CustomAfterMicrosoftCommonTargets)" Condition="Exists('$(CustomAfterMicrosoftCommonTargets)')"/> </Project>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de