MobileSandbox.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
  4. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Compile Update="**\*.xaml.cs">
  9. <DependentUpon>%(Filename)</DependentUpon>
  10. </Compile>
  11. <AvaloniaResource Include="**\*.xaml">
  12. <SubType>Designer</SubType>
  13. </AvaloniaResource>
  14. <AvaloniaResource Include="Assets\*" />
  15. <AvaloniaResource Include="Assets\Fonts\*" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Remove="Pages\NativeEmbedPage.xaml" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <EmbeddedResource Include="Assets\Fonts\SourceSansPro-Bold.ttf" />
  22. <EmbeddedResource Include="Assets\Fonts\SourceSansPro-BoldItalic.ttf" />
  23. <EmbeddedResource Include="Assets\Fonts\SourceSansPro-Italic.ttf" />
  24. <EmbeddedResource Include="Assets\Fonts\SourceSansPro-Regular.ttf" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
  28. <ProjectReference Include="..\..\src\Avalonia.Controls.ColorPicker\Avalonia.Controls.ColorPicker.csproj" />
  29. <ProjectReference Include="..\..\src\Avalonia.Controls.DataGrid\Avalonia.Controls.DataGrid.csproj" />
  30. <ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
  31. <ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
  32. <ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
  33. <ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <AvaloniaResource Update="Pages\NativeEmbedPage.xaml">
  37. <Generator>MSBuild:Compile</Generator>
  38. </AvaloniaResource>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Update="Pages\NativeEmbedPage.xaml.cs">
  42. <DependentUpon>%(Filename)</DependentUpon>
  43. </Compile>
  44. </ItemGroup>
  45. <Import Project="..\..\build\BuildTargets.targets" />
  46. </Project>