Sample2_LocalizationSample.csproj 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <GenerateExtensionPackage>true</GenerateExtensionPackage>
  9. <PixiExtOutputPath>..\..\src\PixiEditor.AvaloniaUI.Desktop\bin\Debug\net8.0\win-x64\Extensions</PixiExtOutputPath>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <RootNamespace>LocalizationSample</RootNamespace>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <None Remove="extension.json" />
  15. <Content Include="extension.json">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. </Content>
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="Localization\*">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. <!--Below is not required if you use Nuget package, this sample references project directly, so it must be here-->
  25. <ItemGroup>
  26. <ProjectReference Include="..\..\src\PixiEditor.Extensions.Sdk\PixiEditor.Extensions.Sdk.csproj" />
  27. </ItemGroup>
  28. <!--Below is not required if you use Nuget package, this sample references project directly, so it must be here-->
  29. <Import Project="..\..\src\PixiEditor.Extensions.Sdk\build\PixiEditor.Extensions.Sdk.props"/>
  30. <Import Project="..\..\src\PixiEditor.Extensions.Sdk\build\PixiEditor.Extensions.Sdk.targets" />
  31. </Project>