Skip to content

Commit

Permalink
Internal Xaml parser 👌
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebaltazar committed Nov 2, 2024
1 parent 7245761 commit f87d6ac
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<PropertyGroup>
<TargetFrameworks>net8.0-android;net8.0-ios17;net8.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
<AssemblyName>Microsoft.Maui.Controls.DeviceTests</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseMaui>true</UseMaui>
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Maui.ServerDrivenUI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Itens de Solução", "Itens
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Maui.Controls.DeviceTests", "Microsoft.Maui.Core.DeviceTests\Microsoft.Maui.Controls.DeviceTests.csproj", "{28109973-FDEC-4CA8-9E37-D16AE77F9B4C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maui.ServerDrivenUI.Xaml", "Maui.ServerDrivenUI.Xaml\Maui.ServerDrivenUI.Xaml.csproj", "{28109973-FDEC-4CA8-9E37-D16AE77F9B4C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
4 changes: 2 additions & 2 deletions Maui.ServerDrivenUI/Maui.ServerDrivenUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Microsoft.Maui.Core.DeviceTests\Microsoft.Maui.Controls.DeviceTests.csproj" PrivateAssets="all" >
<ProjectReference Include="..\Maui.ServerDrivenUI.Xaml\Maui.ServerDrivenUI.Xaml.csproj" PrivateAssets="all">
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>Microsoft.Maui.Controls.DeviceTests.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>

<Target DependsOnTargets="ResolveReferences" Name="CopyProjectReferencesToPackage">
<ItemGroup>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths-&gt;WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>

0 comments on commit f87d6ac

Please sign in to comment.