A cross-platform UI framework for .NET
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.
 
 
 

26 lines
791 B

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<Compile Include="MainView.axaml.fs" />
<Compile Include="MainViewModel.fs" />
<Compile Include="MainWindow.axaml.fs" />
<Compile Include="App.axaml.fs"/>
<Compile Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Win32" />
<PackageReference Include="Avalonia.X11" />
<PackageReference Include="FSharp.Core" />
</ItemGroup>
<Import Project="../IncludeBuildTestsAvaloniaItems.props" />
</Project>