2016-03-22 23:02:25 +03:00
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<PropertyGroup>
|
2017-09-07 10:06:03 +03:00
|
|
|
<XFKeepXamlResources>True</XFKeepXamlResources>
|
2016-03-22 23:02:25 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-09-07 10:06:03 +03:00
|
|
|
<Import Project="$(MSBuildThisFileDirectory)Xamarin.Forms.targets" />
|
2018-10-11 16:00:33 +03:00
|
|
|
<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);
|
2016-07-19 02:17:29 +03:00
|
|
|
GenerateDebugCode;
|
2016-03-22 23:02:25 +03:00
|
|
|
</CompileDependsOn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- duplicate legacy InitializeComponent, create a ctor with bool param -->
|
2018-10-11 16:00:33 +03:00
|
|
|
<Target Name="GenerateDebugCode" AfterTargets="AfterCompile">
|
2016-03-22 23:02:25 +03:00
|
|
|
<DebugXamlCTask
|
2017-02-02 12:57:50 +03:00
|
|
|
Assembly = "$(IntermediateOutputPath)$(TargetFileName)"
|
2016-03-22 23:02:25 +03:00
|
|
|
ReferencePath = "@(ReferencePath)"
|
2017-05-17 14:20:22 +03:00
|
|
|
DebugSymbols = "$(DebugSymbols)"
|
|
|
|
DebugType = "$(DebugType)"/>
|
2016-03-22 23:02:25 +03:00
|
|
|
</Target>
|
2017-09-07 10:06:03 +03:00
|
|
|
</Project>
|