VeloeAvaloniaKemonoPartyApp.Browser.csproj 675 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
  5. <WasmMainJSPath>AppBundle\main.js</WasmMainJSPath>
  6. <OutputType>Exe</OutputType>
  7. <AssemblyVersion>1.0.0.8</AssemblyVersion>
  8. <FileVersion>1.0.0.8</FileVersion>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <WasmExtraFilesToDeploy Include="AppBundle\**" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Avalonia.Browser" Version="11.0.6" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\VeloeAvaloniaKemonoPartyApp\VeloeAvaloniaKemonoPartyApp.csproj" />
  18. </ItemGroup>
  19. </Project>