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.
36 lines
1.6 KiB
36 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
</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.Themes.Default\Avalonia.Themes.Default.csproj" />
|
|
<ProjectReference Include="..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
|
|
<ProjectReference Include="..\MiniMvvm\MiniMvvm.csproj" />
|
|
<ProjectReference Include="..\SampleControls\ControlSamples.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\..\build\BuildTargets.targets" />
|
|
</Project>
|
|
|