ILRepack/Steps/ReferencesRepackStep.cs (31 lines of code) (raw):
//
// Copyright (c) 2011 Francois Valdy
// Copyright (c) 2015 Timotei Dolean
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
using Mono.Cecil;
using System;
using System.Linq;
namespace ILRepacking.Steps
{
internal class ReferencesRepackStep : IRepackStep
{
private readonly ILogger _logger;
private readonly IRepackContext _repackContext;
public ReferencesRepackStep(ILogger logger, IRepackContext repackContext)
{
_logger = logger;
_repackContext = repackContext;
}
public void Perform()
{
_logger.Info("Processing references");
// Add all AssemblyReferences to merged assembly (probably not necessary)
var targetAssemblyMainModule = _repackContext.TargetAssemblyMainModule;
_repackContext.LineIndexer.PostRepackReferences();
// add all module references (pinvoke dlls)
foreach (var z in _repackContext.MergedAssemblies.SelectMany(x => x.Modules).SelectMany(x => x.ModuleReferences))
{
string name = z.Name;
if (!targetAssemblyMainModule.ModuleReferences.Any(y => y.Name == name))
{
targetAssemblyMainModule.ModuleReferences.Add(z);
}
}
}
}
}