PixiEditor.Browser.csproj 736 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-browser</TargetFramework>
  4. <RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
  5. <WasmMainJSPath>wwwroot\main.js</WasmMainJSPath>
  6. <OutputType>Exe</OutputType>
  7. <RootNamespace>PixiEditor.Avalonia.Browser</RootNamespace>
  8. <Nullable>enable</Nullable>
  9. <WasmRuntimeAssetsLocation>./_framework</WasmRuntimeAssetsLocation>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <WasmExtraFilesToDeploy Include="wwwroot\**"/>
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Avalonia.Browser" Version="$(AvaloniaVersion)"/>
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\PixiEditor\PixiEditor.csproj" />
  19. </ItemGroup>
  20. </Project>