csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.9 KiB
40 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
<IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Update="**\*.xaml.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<AvaloniaResource Include="**\*.xaml">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\*" />
|
|
<AvaloniaResource Include="Assets\Fonts\*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Assets\Fonts\SourceSansPro-Bold.ttf" />
|
|
<EmbeddedResource Include="Assets\Fonts\SourceSansPro-BoldItalic.ttf" />
|
|
<EmbeddedResource Include="Assets\Fonts\SourceSansPro-Italic.ttf" />
|
|
<EmbeddedResource Include="Assets\Fonts\SourceSansPro-Regular.ttf" />
|
|
<EmbeddedResource Include="Pages\teapot.bin" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\packages\Avalonia\Avalonia.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Controls.ColorPicker\Avalonia.Controls.ColorPicker.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Controls.DataGrid\Avalonia.Controls.DataGrid.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Controls.ItemsRepeater\Avalonia.Controls.ItemsRepeater.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Themes.Simple\Avalonia.Themes.Simple.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
|
|
<ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
|
|
<ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\..\build\BuildTargets.targets" />
|
|
<Import Project="..\..\build\SourceGenerators.props" />
|
|
</Project>
|
|
|