43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<RuntimeIdentifier>wasi-wasm</RuntimeIdentifier>
|
|
<UseAppHost>false</UseAppHost>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<SelfContained>true</SelfContained>
|
|
<IlcExportUnmanagedEntrypoints>true</IlcExportUnmanagedEntrypoints>
|
|
</PropertyGroup>
|
|
|
|
<!-- Copy WIT files from LyraApi to lyra-api wit folder -->
|
|
<Target Name="CopyFolderOnBuild" BeforeTargets="WitCompile_InvokeTool">
|
|
<ItemGroup>
|
|
<MyFiles Include="..\LyraApi\wit\**\*.wit" />
|
|
</ItemGroup>
|
|
<Copy SourceFiles="@(MyFiles)" DestinationFolder="wit\deps\lyraapi\%(RecursiveDir)" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BytecodeAlliance.Componentize.DotNet.Wasm.SDK" Version="0.4.0-preview00007" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Wit Remove="**\*.wit" />
|
|
<!-- <Wit Include="wit/deps/lyraapi" World="imports" /> -->
|
|
<Wit Include="wit" World="example" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="runtime.linux-x64.Microsoft.DotNet.ILCompiler.LLVM" Version="10.0.0-alpha.1.24531.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LyraApi\LyraApi.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|