本文整理汇总了C#中FileCopySet.Remove方法的典型用法代码示例。如果您正苦于以下问题:C# FileCopySet.Remove方法的具体用法?C# FileCopySet.Remove怎么用?C# FileCopySet.Remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileCopySet
的用法示例。
在下文中一共展示了FileCopySet.Remove方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PopulateSupportFileListInternal
void PopulateSupportFileListInternal (FileCopySet list, ConfigurationSelector configuration)
{
if (supportReferDistance <= 2)
base.PopulateSupportFileList (list, configuration);
//rename the app.config file
list.Remove ("app.config");
list.Remove ("App.config");
ProjectFile appConfig = Files.FirstOrDefault (f => f.FilePath.FileName.Equals ("app.config", StringComparison.CurrentCultureIgnoreCase));
if (appConfig != null) {
string output = GetOutputFileName (configuration).FileName;
list.Add (appConfig.FilePath, true, output + ".config");
}
//collect all the "local copy" references and their attendant files
foreach (ProjectReference projectReference in References) {
if (!projectReference.LocalCopy || !projectReference.CanSetLocalCopy)
continue;
if (ParentSolution != null && projectReference.ReferenceType == ReferenceType.Project) {
DotNetProject p = ParentSolution.FindProjectByName (projectReference.Reference) as DotNetProject;
if (p == null) {
LoggingService.LogWarning ("Project '{0}' referenced from '{1}' could not be found", projectReference.Reference, this.Name);
continue;
}
DotNetProjectConfiguration conf = p.GetConfiguration (configuration) as DotNetProjectConfiguration;
//VS COMPAT: recursively copy references's "local copy" files
//but only copy the "copy to output" files from the immediate references
if (processedProjects.Add (p) || supportReferDistance == 1) {
foreach (var v in p.GetOutputFiles (configuration))
list.Add (v, true, v.CanonicalPath.ToString ().Substring (conf.OutputDirectory.CanonicalPath.ToString ().Length + 1));
foreach (var v in p.GetSupportFileList (configuration))
list.Add (v.Src, v.CopyOnlyIfNewer, v.Target);
}
}
else if (projectReference.ReferenceType == ReferenceType.Assembly) {
// VS COMPAT: Copy the assembly, but also all other assemblies referenced by it
// that are located in the same folder
foreach (string file in GetAssemblyRefsRec (projectReference.Reference, new HashSet<string> ())) {
// Indirectly referenced assemblies are only copied if a newer copy doesn't exist. This avoids overwritting directly referenced assemblies
// by indirectly referenced stale copies of the same assembly. See bug #655566.
bool copyIfNewer = file != projectReference.Reference;
list.Add (file, copyIfNewer);
if (File.Exists (file + ".config"))
list.Add (file + ".config", copyIfNewer);
string mdbFile = TargetRuntime.GetAssemblyDebugInfoFile (file);
if (File.Exists (mdbFile))
list.Add (mdbFile, copyIfNewer);
}
}
else if (projectReference.ReferenceType == ReferenceType.Custom) {
foreach (string refFile in projectReference.GetReferencedFileNames (configuration))
list.Add (refFile);
}
}
}
示例2: PopulateSupportFileList
void PopulateSupportFileList (FileCopySet list, ConfigurationSelector configuration, int referenceDistance)
{
if (referenceDistance < 2)
base.PopulateSupportFileList (list, configuration);
//rename the app.config file
FileCopySet.Item appConfig = list.Remove ("app.config");
if (appConfig == null)
appConfig = list.Remove ("App.config");
if (appConfig != null) {
string output = Path.GetFileName (GetOutputFileName (configuration));
list.Add (appConfig.Src, appConfig.CopyOnlyIfNewer, output + ".config");
}
//collect all the "local copy" references and their attendant files
foreach (ProjectReference projectReference in References) {
if (!projectReference.LocalCopy || ParentSolution == null)
continue;
if (projectReference.ReferenceType == ReferenceType.Project) {
DotNetProject p = ParentSolution.FindProjectByName (projectReference.Reference) as DotNetProject;
if (p == null) {
LoggingService.LogWarning ("Project '{0}' referenced from '{1}' could not be found", projectReference.Reference, this.Name);
continue;
}
string refOutput = p.GetOutputFileName (configuration);
if (string.IsNullOrEmpty (refOutput)) {
LoggingService.LogWarning ("Project '{0}' referenced from '{1}' has an empty output filename", p.Name, this.Name);
continue;
}
list.Add (refOutput);
//VS COMPAT: recursively copy references's "local copy" files
//but only copy the "copy to output" files from the immediate references
p.PopulateSupportFileList (list, configuration, referenceDistance + 1);
DotNetProjectConfiguration refConfig = p.GetConfiguration (configuration) as DotNetProjectConfiguration;
if (refConfig != null && refConfig.DebugMode) {
string mdbFile = TargetRuntime.GetAssemblyDebugInfoFile (refOutput);
if (File.Exists (mdbFile)) {
list.Add (mdbFile);
}
}
}
else if (projectReference.ReferenceType == ReferenceType.Assembly) {
// VS COMPAT: Copy the assembly, but also all other assemblies referenced by it
// that are located in the same folder
foreach (string file in GetAssemblyRefsRec (projectReference.Reference, new HashSet<string> ())) {
list.Add (file);
if (File.Exists (file + ".config"))
list.Add (file + ".config");
string mdbFile = TargetRuntime.GetAssemblyDebugInfoFile (file);
if (File.Exists (mdbFile))
list.Add (mdbFile);
}
}
else if (projectReference.ReferenceType == ReferenceType.Custom) {
foreach (string refFile in projectReference.GetReferencedFileNames (configuration))
list.Add (refFile);
}
}
}