BuildTests.FSharp.fsproj 791 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ApplicationManifest>app.manifest</ApplicationManifest>
  6. <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Include="MainView.axaml.fs" />
  10. <Compile Include="MainViewModel.fs" />
  11. <Compile Include="MainWindow.axaml.fs" />
  12. <Compile Include="App.axaml.fs"/>
  13. <Compile Include="Program.fs"/>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <PackageReference Include="Avalonia.Win32" />
  17. <PackageReference Include="Avalonia.X11" />
  18. <PackageReference Include="FSharp.Core" />
  19. </ItemGroup>
  20. <Import Project="../IncludeBuildTestsAvaloniaItems.props" />
  21. </Project>