/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
VisualPascalABCNET/FormsDesignerBinding/Dependecies/src/Libraries/ICSharpCode.Build.Tasks/Project/SharpDevelop.TargetingPack.targets
19 строк
911 B
Бондарев Иван
initial commit
14 май 2015, 22:35
14 май 2015, 22:35
e6e67c1
Код
Авторство
О чём код?
<?xml version="1.0"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <UsingTask TaskName="ICSharpCode.Build.Tasks.CopyLocalWorkaround" AssemblyFile="$(SharpDevelopBinPath)\ICSharpCode.Build.Tasks.dll"/> <!-- This file detects when the .NET 4 targeting pack is missing and corrects the "Copy Local" flag. This file uses MSBuild 4.0 features, so don't include it in older projects. When compiling inside SharpDevelop, this file is automatically included if the project uses MSBuild 4.0 and targets .NET 4.0. --> <Target Name="SDTargetingPack" BeforeTargets="ResolveAssemblyReferences"> <CopyLocalWorkaround Assemblies="@(Reference)" AssemblyFiles="@(_ExplicitReference)"> <Output TaskParameter="OutputAssemblies" ItemName="Reference" /> <Output TaskParameter="OutputAssemblyFiles" ItemName="_ExplicitReference"/> </CopyLocalWorkaround> </Target> </Project>