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.

24 lines
739B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <RuntimeIdentifier>browser-wasm</RuntimeIdentifier>
  5. <WasmMainJSPath>AppBundle\main.js</WasmMainJSPath>
  6. <OutputType>Exe</OutputType>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <WasmExtraFilesToDeploy Include="AppBundle\**" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Avalonia.Browser" Version="$(AvaloniaVersion)" />
  13. <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
  14. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\Example\Example.csproj" />
  18. </ItemGroup>
  19. </Project>