maui-linux/.nuspec/Xamarin.Forms.Debug.targets

24 строки
836 B
Plaintext
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<XFKeepXamlResources>True</XFKeepXamlResources>
2016-03-22 23:02:25 +03:00
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)Xamarin.Forms.targets" />
<UsingTask TaskName="Xamarin.Forms.Build.Tasks.DebugXamlCTask" AssemblyFile="$(_XFBuildTasksLocation)Xamarin.Forms.Build.Tasks.dll" />
2016-03-22 23:02:25 +03:00
<PropertyGroup>
<CompileDependsOn>
$(CompileDependsOn);
GenerateDebugCode;
2016-03-22 23:02:25 +03:00
</CompileDependsOn>
</PropertyGroup>
<!-- duplicate legacy InitializeComponent, create a ctor with bool param -->
<Target Name="GenerateDebugCode" AfterTargets="AfterCompile">
2016-03-22 23:02:25 +03:00
<DebugXamlCTask
Assembly = "$(IntermediateOutputPath)$(TargetFileName)"
2016-03-22 23:02:25 +03:00
ReferencePath = "@(ReferencePath)"
DebugSymbols = "$(DebugSymbols)"
DebugType = "$(DebugType)"/>
2016-03-22 23:02:25 +03:00
</Target>
</Project>