HelloWorld.csproj 1.1 KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RuntimeIdentifier>wasi-wasm</RuntimeIdentifier>
  5. <OutputType>Exe</OutputType>
  6. <PublishTrimmed>true</PublishTrimmed>
  7. <WasmSingleFileBundle>true</WasmSingleFileBundle>
  8. <OutputPath>..\..\src\PixiEditor.AvaloniaUI.Desktop\bin\Debug\net8.0\Extensions</OutputPath>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\src\PixiEditor.Extensions.Wasm\PixiEditor.Extensions.Wasm.csproj" />
  12. </ItemGroup>
  13. <!--Below is not required if you use Nuget package, this sample references project directly, so it must be here-->
  14. <Import Project="..\..\src\PixiEditor.Extensions.Wasm\build\PixiEditor.Extensions.Wasm.props"/>
  15. <Import Project="..\..\src\PixiEditor.Extensions.Wasm\build\PixiEditor.Extensions.Wasm.targets" />
  16. <ItemGroup>
  17. <None Remove="extension.json" />
  18. <Content Include="extension.json">
  19. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  20. </Content>
  21. </ItemGroup>
  22. </Project>