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.
38 lines
1.7 KiB
38 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
|
|
<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>
|
|
<Folder Include="Models\"/>
|
|
<AvaloniaResource Include="Assets\**"/>
|
|
</ItemGroup>
|
|
<ImportGroup>
|
|
<Import Project="..\..\..\build\BuildTargets.targets" Condition="Exists('..\..\..\build\BuildTargets.targets')" />
|
|
<Import Project="..\..\..\build\SourceGenerators.props" />
|
|
</ImportGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Avalonia.Base\Avalonia.Base.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Avalonia.Desktop\Avalonia.Desktop.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj" />
|
|
<ProjectReference Include="..\..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|